mirror of
https://github.com/corda/corda.git
synced 2025-06-17 06:38:21 +00:00
dummy SecurityManager and related classes added
This commit is contained in:
@ -11,6 +11,22 @@
|
||||
package java.security;
|
||||
|
||||
public abstract class Permission {
|
||||
|
||||
protected String name;
|
||||
|
||||
public Permission(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return this.getClass().getSimpleName() + '['+name+']';
|
||||
}
|
||||
|
||||
public PermissionCollection newPermissionCollection() {
|
||||
return null;
|
||||
}
|
||||
|
Reference in New Issue
Block a user