Removes the specified value from the array associated with the resource.
Type: rule policy.
Syntax
remove {sid: Handle, entry: Entry}
In this case:
Handle
refers to the handle of the resource associated with the array.Entry
refers to the value that should be removed from the array.
Returned value
KSS_GRANT
if the value was removed or if the array does not contain this value.
KSS_DENY
in the following cases:
HashSet
class object.Example
...
/* For a Server entity query via the security interface, the value 5 is removed from the array associated with the entity */
security src=Server, method=Remove {
S.remove {sid: src_sid, entry: 5}
}
Page top