Interface ConditionalPermissionUpdate
-
@ProviderType public interface ConditionalPermissionUpdate
Update the Conditional Permission Table. There may be many update objects in the system at one time. If commit is called and the Conditional Permission Table has been modified since this update was created, then the call to commit will fail and this object should be discarded.- Since:
- 1.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancommit()Commit this update.java.util.List<ConditionalPermissionInfo>getConditionalPermissionInfos()This method returns the list ofConditionalPermissionInfos for this update.
-
-
-
Method Detail
-
getConditionalPermissionInfos
java.util.List<ConditionalPermissionInfo> getConditionalPermissionInfos()
This method returns the list ofConditionalPermissionInfos for this update. This list is originally based on the Conditional Permission Table at the time this update was created. The list returned by this method will be replace the Conditional Permission Table if commit is called and is successful.The
delete()method of theConditionalPermissionInfos in the list must throw UnsupportedOperationException.The list returned by this method is ordered and the most significant table entry is the first entry in the list.
- Returns:
- A
Listof theConditionalPermissionInfos which represent the Conditional Permissions maintained by this update. Modifications to this list will not affect the Conditional Permission Table until successfully committed. The list may be empty if the Conditional Permission Table was empty when this update was created.
-
commit
boolean commit()
Commit this update. If no changes have been made to the Conditional Permission Table since this update was created, then this method will replace the Conditional Permission Table with this update's Conditional Permissions. This method may only be successfully called once on this object.If any of the
ConditionalPermissionInfos in the update list hasnullas a name it will be replaced with a newConditionalPermissionInfoobject that has a generated name which is unique within the list.No two entries in this update's Conditional Permissions may have the same name. Other consistency checks may also be performed. If this update's Conditional Permissions are determined to be inconsistent in some way then an
IllegalStateExceptionwill be thrown.This method returns
falseif the commit did not occur because the Conditional Permission Table has been modified since the creation of this update.- Returns:
trueif the commit was successful.falseif the commit did not occur because the Conditional Permission Table has been modified since the creation of this update.- Throws:
java.lang.SecurityException- If the caller does not haveAllPermission.java.lang.IllegalStateException- If this update's Conditional Permissions are not valid or inconsistent. For example, this update has two Conditional Permissions in it with the same name.
-
-