Package com.flower.docs.domain.acl
Class ACLProxy
- java.lang.Object
- 
- com.flower.docs.domain.common.IdentifiableElement
- 
- com.flower.docs.domain.acl.SecurityObject
- 
- com.flower.docs.domain.acl.ACLProxy
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class ACLProxy extends SecurityObject implements java.io.Serializable An ACL contextual proxy allows to define an ACL according to rulest <p>Java class for ACLProxy complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="ACLProxy"> <complexContent> <extension base="{http://flower.com/docs/domain/acl}SecurityObject"> <sequence> <element name="rules" type="{http://flower.com/docs/domain/acl}ACLRule" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType> </pre>- See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.util.List<ACLRule>rulesThe rules of the proxy.- 
Fields inherited from class com.flower.docs.domain.acl.SecurityObjectname
 - 
Fields inherited from class com.flower.docs.domain.common.IdentifiableElementid
 
- 
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)java.util.List<ACLRule>getRules()Gets the value of the rules property.inthashCode()voidsetRules(java.util.List<ACLRule> value)java.lang.StringtoString()- 
Methods inherited from class com.flower.docs.domain.acl.SecurityObjectgetName, setName
 - 
Methods inherited from class com.flower.docs.domain.common.IdentifiableElementgetId, setId
 
- 
 
- 
- 
- 
Field Detail- 
rulesprotected java.util.List<ACLRule> rules The rules of the proxy. The first which is satisfied should be applied
 
- 
 - 
Method Detail- 
getRulespublic java.util.List<ACLRule> getRules() Gets the value of the rules property. <p> 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 <CODE>set</CODE> method for the rules property. <p> For example, to add a new item, do as follows: <pre> getRules().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listACLRule<p> The rules of the proxy. The first which is satisfied should be applied
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object other) - Overrides:
- equalsin class- java.lang.Object
 
 - 
setRulespublic void setRules(java.util.List<ACLRule> value) - See Also:
- getRules()
 
 
- 
 
-