public class

AclEntry

extends Object
java.lang.Object
   ↳ com.emc.documentum.fs.datamodel.core.acl.AclEntry

Class Overview

Java class for AclEntry complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="AclEntry">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="accessor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="accessType" type="{http://acl.core.datamodel.fs.documentum.emc.com/}AccessType" minOccurs="0"/>
         <element name="permissions" type="{http://core.datamodel.fs.documentum.emc.com/}Permission" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Fields
protected AccessType accessType
protected String accessor
protected List<Permission> permissions
Public Constructors
AclEntry()
Public Methods
AccessType getAccessType()
Gets the value of the accessType property.
String getAccessor()
Gets the value of the accessor property.
List<Permission> getPermissions()
Gets the value of the permissions property.
void setAccessType(AccessType value)
Sets the value of the accessType property.
void setAccessor(String value)
Sets the value of the accessor property.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

protected AccessType accessType

protected String accessor

protected List<Permission> permissions

Public Constructors

public AclEntry ()

Public Methods

public AccessType getAccessType ()

Gets the value of the accessType property.

Returns

public String getAccessor ()

Gets the value of the accessor property.

Returns
  • possible object is String

public List<Permission> getPermissions ()

Gets the value of the permissions property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the permissions property.

For example, to add a new item, do as follows:

    getPermissions().add(newItem);
 

Objects of the following type(s) are allowed in the list Permission

public void setAccessType (AccessType value)

Sets the value of the accessType property.

Parameters
value Allowed object is AccessType

public void setAccessor (String value)

Sets the value of the accessor property.

Parameters
value Allowed object is String