Interface AclClient
-
- All Known Implementing Classes:
AclClientImpl
public interface AclClientThis client provides methods for administrating a given access control list.- Author:
- tfrisch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddelete()This method deletes the access control list.java.util.List<com.lexmark.saperion.administration.AclReferenceType>getACLs()This method returns the ACLs currently set on the ACL.com.lexmark.saperion.administration.AclTypeload()This method loads the access control list.voidundelete()This method un-deletes the access control list.voidupdate(com.lexmark.saperion.administration.AclPropertiesType properties)This method updates the access control list with the given properties.
-
-
-
Method Detail
-
delete
void delete() throws com.lexmark.saperion.exceptions.EcmExceptionThis method deletes the access control list.- Throws:
com.lexmark.saperion.exceptions.EcmException- indicates that a system exception occurred
-
undelete
void undelete() throws com.lexmark.saperion.exceptions.EcmExceptionThis method un-deletes the access control list.- Throws:
com.lexmark.saperion.exceptions.EcmException- indicates that a system exception occurred
-
load
com.lexmark.saperion.administration.AclType load() throws com.lexmark.saperion.exceptions.EcmExceptionThis method loads the access control list.- Returns:
- the referenced access control list
- Throws:
com.lexmark.saperion.exceptions.system.SystemException- indicates that a system exception occurredcom.lexmark.saperion.exceptions.EcmException
-
update
void update(com.lexmark.saperion.administration.AclPropertiesType properties) throws com.lexmark.saperion.exceptions.EcmExceptionThis method updates the access control list with the given properties.- Parameters:
properties- the new properties of the access control list- Throws:
com.lexmark.saperion.exceptions.system.SystemException- indicates that a system exception occurredcom.lexmark.saperion.exceptions.EcmException
-
getACLs
java.util.List<com.lexmark.saperion.administration.AclReferenceType> getACLs() throws com.lexmark.saperion.exceptions.EcmExceptionThis method returns the ACLs currently set on the ACL.- Returns:
- the ACLs currently set
- Throws:
com.lexmark.saperion.exceptions.EcmException- when loading the ACLs failed
-
-