Removed abstract declaration
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/information-system/resource-registry@150412 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
908cfb5fae
commit
91cb8132a5
|
@ -19,7 +19,7 @@ import com.tinkerpop.blueprints.impls.orient.OrientGraphFactory;
|
||||||
* @author Luca Frosini (ISTI - CNR)
|
* @author Luca Frosini (ISTI - CNR)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public abstract class SecurityContextMapper {
|
public class SecurityContextMapper {
|
||||||
|
|
||||||
private static Logger logger = LoggerFactory
|
private static Logger logger = LoggerFactory
|
||||||
.getLogger(SecurityContextMapper.class);
|
.getLogger(SecurityContextMapper.class);
|
||||||
|
@ -86,7 +86,7 @@ public abstract class SecurityContextMapper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static enum SecurityType {
|
public enum SecurityType {
|
||||||
ROLE("Role"), USER("User");
|
ROLE("Role"), USER("User");
|
||||||
|
|
||||||
private final String name;
|
private final String name;
|
||||||
|
@ -100,7 +100,7 @@ public abstract class SecurityContextMapper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static enum PermissionMode {
|
public enum PermissionMode {
|
||||||
READER("Reader"), WRITER("Writer");
|
READER("Reader"), WRITER("Writer");
|
||||||
|
|
||||||
private final String name;
|
private final String name;
|
||||||
|
|
Loading…
Reference in New Issue