| java.util.ArrayList com.coi.tools.os.win.AccessControlList
AccessControlList | public class AccessControlList extends java.util.ArrayList (Code) | | Data container for access control lists used by the registry stuff in the java and in the native
part. DO NOT CHANGE METHODE SIGNATURES etc. without addapt the native methods
RegistryImpl.modifyKeyACL and RegistryImpl.getKeyACL.
author: Klaus Bartz |
Inner Class :public static class AccessControlEntry implements Cloneable | |
Method Summary | |
public AccessControlEntry | getACE(int num) Returns the access control entry related to the given id.
Parameters: num - id in the internal permisson array. | public int | getACECount() Returns number of access control entries. | public void | setACE(String owner, int allowed, int denied) Creates an ACE entry in the permission array with the given values. |
AccessControlList | public AccessControlList()(Code) | | Default constructor.
|
getACE | public AccessControlEntry getACE(int num)(Code) | | Returns the access control entry related to the given id.
Parameters: num - id in the internal permisson array. the access control entry for the given id |
getACECount | public int getACECount()(Code) | | Returns number of access control entries.
number of access control entries |
setACE | public void setACE(String owner, int allowed, int denied)(Code) | | Creates an ACE entry in the permission array with the given values.
Parameters: owner - owner of the ACE Parameters: allowed - access allowed mask Parameters: denied - access denied mask |
|
|