Package com.flower.docs.domain.scope
Class Profile
- java.lang.Object
-
- com.flower.docs.domain.common.IdentifiableElement
-
- com.flower.docs.domain.scope.Profile
-
- All Implemented Interfaces:
java.io.Serializable
public class Profile extends IdentifiableElement implements java.io.Serializable
<p>Java class for Profile complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="Profile"> <complexContent> <extension base="{http://flower.com/docs/domain/common}IdentifiableElement"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="principals" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="properties" type="{http://flower.com/docs/domain/common}Property" maxOccurs="unbounded"/> </sequence> </extension> </complexContent> </complexType> </pre>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringdescriptionprotected java.lang.Stringnameprotected java.util.List<java.lang.String>principalsprotected java.util.List<Property>properties-
Fields inherited from class com.flower.docs.domain.common.IdentifiableElement
id
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)java.lang.StringgetDescription()Gets the value of the description property.java.lang.StringgetName()Gets the value of the name property.java.util.List<java.lang.String>getPrincipals()Gets the value of the principals property.java.util.List<Property>getProperties()Gets the value of the properties property.inthashCode()voidsetDescription(java.lang.String value)Sets the value of the description property.voidsetName(java.lang.String value)Sets the value of the name property.voidsetPrincipals(java.util.List<java.lang.String> value)voidsetProperties(java.util.List<Property> value)java.lang.StringtoString()-
Methods inherited from class com.flower.docs.domain.common.IdentifiableElement
getId, setId
-
-
-
-
Field Detail
-
name
protected java.lang.String name
-
description
protected java.lang.String description
-
principals
protected java.util.List<java.lang.String> principals
-
properties
protected java.util.List<Property> properties
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getDescription
public java.lang.String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(java.lang.String value)
Sets the value of the description property.- Parameters:
value- allowed object isString
-
getPrincipals
public java.util.List<java.lang.String> getPrincipals()
Gets the value of the principals 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 principals property. <p> For example, to add a new item, do as follows: <pre> getPrincipals().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listString
-
getProperties
public java.util.List<Property> getProperties()
Gets the value of the properties 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 properties property. <p> For example, to add a new item, do as follows: <pre> getProperties().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listProperty
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
setPrincipals
public void setPrincipals(java.util.List<java.lang.String> value)
-
setProperties
public void setProperties(java.util.List<Property> value)
-
-