Class RecipientPrincipals

  • All Implemented Interfaces:
    java.io.Serializable

    public class RecipientPrincipals
    extends java.lang.Object
    implements java.io.Serializable
    The principals of all recipients of an element. The recipients are identities who have access to an element. <p>Java class for RecipientPrincipals complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> &lt;complexType name="RecipientPrincipals"&gt; &lt;complexContent&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; &lt;sequence&gt; &lt;element name="users" type="{http://flower.com/docs/domain/common}Id" maxOccurs="unbounded" minOccurs="0"/&gt; &lt;element name="groups" type="{http://flower.com/docs/domain/common}Id" maxOccurs="unbounded" minOccurs="0"/&gt; &lt;element name="profiles" type="{http://flower.com/docs/domain/common}Id" maxOccurs="unbounded" minOccurs="0"/&gt; &lt;/sequence&gt; &lt;/restriction&gt; &lt;/complexContent&gt; &lt;/complexType&gt; </pre>
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.util.List<Id> groups  
      protected java.util.List<Id> profiles  
      protected java.util.List<Id> users  
    • Constructor Summary

      Constructors 
      Constructor Description
      RecipientPrincipals()
      Default no-arg constructor abc
      RecipientPrincipals​(java.util.List<Id> users, java.util.List<Id> groups, java.util.List<Id> profiles)
      Fully-initialising value constructor
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object other)  
      java.util.List<Id> getGroups()
      Gets the value of the groups property.
      java.util.List<Id> getProfiles()
      Gets the value of the profiles property.
      java.util.List<Id> getUsers()
      Gets the value of the users property.
      int hashCode()  
      void setGroups​(java.util.List<Id> value)  
      void setProfiles​(java.util.List<Id> value)  
      void setUsers​(java.util.List<Id> value)  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • users

        protected java.util.List<Id> users
      • groups

        protected java.util.List<Id> groups
      • profiles

        protected java.util.List<Id> profiles
    • Constructor Detail

      • RecipientPrincipals

        public RecipientPrincipals()
        Default no-arg constructor abc
      • RecipientPrincipals

        public RecipientPrincipals​(java.util.List<Id> users,
                                   java.util.List<Id> groups,
                                   java.util.List<Id> profiles)
        Fully-initialising value constructor
    • Method Detail

      • getUsers

        public java.util.List<Id> getUsers()
        Gets the value of the users 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 users property. <p> For example, to add a new item, do as follows: <pre> getUsers().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the list Id
      • getGroups

        public java.util.List<Id> getGroups()
        Gets the value of the groups 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 groups property. <p> For example, to add a new item, do as follows: <pre> getGroups().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the list Id
      • getProfiles

        public java.util.List<Id> getProfiles()
        Gets the value of the profiles 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 profiles property. <p> For example, to add a new item, do as follows: <pre> getProfiles().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the list Id
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object other)
        Overrides:
        equals in class java.lang.Object
      • setUsers

        public void setUsers​(java.util.List<Id> value)
      • setGroups

        public void setGroups​(java.util.List<Id> value)
      • setProfiles

        public void setProfiles​(java.util.List<Id> value)