Class TemplatePermission

java.lang.Object
com.onenetwork.platform.common.Model
com.onenetwork.platform.common.TemplatePermission
All Implemented Interfaces:
com.onenetwork.platform.common.impl.Child<Template>, Model, java.io.Serializable

public class TemplatePermission
extends com.onenetwork.platform.common.Model
implements java.io.Serializable, com.onenetwork.platform.common.impl.Child<Template>
This level is used to store information on a template's permissibility; it allows additional organizations to access a template, aside from the template owners.

Java class for TemplatePermission complex type.

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

 <complexType name="TemplatePermission">
   <complexContent>
     <extension base="{http://www.onenetwork.com/Platform}Model">
       <sequence>
         <element name="InputRefId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Error" type="{http://www.onenetwork.com/Platform}Error" minOccurs="0"/>
         <element name="LevelModifiedDate" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="PermissionType" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="PermissionValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Udfs" type="{http://www.onenetwork.com/Platform}NameValuePairList" minOccurs="0"/>
         <element ref="{http://www.onenetwork.com/Platform}MDFs" maxOccurs="unbounded" minOccurs="0"/>
         <element name="Attribute" type="{http://www.onenetwork.com/Platform}AttributeValue" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
See Also:
Serialized Form
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.util.List<AttributeValue> attributes  
    protected StatusMessage error  
    protected java.lang.String inputRefId  
    protected java.util.Calendar levelModifiedDate  
    protected java.util.List<javax.xml.bind.JAXBElement<? extends com.onenetwork.platform.common.MDFs>> mdFsList  
    static com.onenetwork.platform.data.model.impl.ModelLevelType MODEL_LEVEL_TYPE
    Constant reference to the ModelLevelType for this JAXB.
    static com.onenetwork.platform.data.model.impl.ModelType MODEL_TYPE
    Constant reference to the ModelType for this JAXB.
    protected Template parent
    Reference to the parent Template
    protected java.lang.String permissionType  
    protected java.lang.String permissionValue  
    static java.lang.String STANDARD_MODEL_NAME
    Constant reference to the standard model name for this JAXB.
    protected com.onenetwork.platform.common.NameValuePairList udfs  

    Fields inherited from class com.onenetwork.platform.common.Model

    keyCoordinationEnabled
  • Constructor Summary

    Constructors 
    Constructor Description
    TemplatePermission()  
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(java.lang.Object obj)
    A Model object is considered "equal" to another Model object if it is a Model of the same type and its Natural Key fields are identical.
    java.util.List<AttributeValue> getAttributes()
    Gets the value of the attributes property.
    StatusMessage getError()
    Gets the value of the error property.
    java.lang.String getInputRefId()
    Gets the value of the inputRefId property.
    java.util.Calendar getLevelModifiedDate()
    Gets the value of the levelModifiedDate property.
    java.util.List<javax.xml.bind.JAXBElement<? extends com.onenetwork.platform.common.MDFs>> getMDFsList()
    Gets the value of the mdFsList property.
    com.onenetwork.platform.data.model.impl.ModelLevelType getModelLevelType()
    methods to get ModelLevelType for this JAXB.
    com.onenetwork.platform.data.model.impl.ModelType getModelType()
    methods to get ModelType for this JAXB.
    Template getParent()
    Returns the parent Template.
    java.lang.String getPermissionType()
    Gets the value of the permissionType property.
    java.lang.String getPermissionValue()
    Gets the value of the permissionValue property.
    java.lang.String getStandardModelName()
    method to get standard model name for this JAXB.
    com.onenetwork.platform.common.NameValuePairList getUdfs()
    Gets the value of the udfs property.
    int hashCode()  
    protected java.lang.String internalToString()  
    boolean isSetAttributes()  
    boolean isSetError()  
    boolean isSetInputRefId()  
    boolean isSetLevelModifiedDate()  
    boolean isSetMDFsList()  
    boolean isSetPermissionType()  
    boolean isSetPermissionValue()  
    boolean isSetUdfs()  
    void setError​(StatusMessage value)
    Sets the value of the error property.
    void setInputRefId​(java.lang.String value)
    Sets the value of the inputRefId property.
    void setLevelModifiedDate​(java.util.Calendar value)
    Sets the value of the levelModifiedDate property.
    void setParent​(Template parent)
    Sets the parent Template.
    void setPermissionType​(java.lang.String value)
    Sets the value of the permissionType property.
    void setPermissionValue​(java.lang.String value)
    Sets the value of the permissionValue property.
    void setUdfs​(com.onenetwork.platform.common.NameValuePairList value)
    Sets the value of the udfs property.
    java.lang.String toStrContrib()
    Not intended for use by Clients
    void unsetAttributes()  
    void unsetMDFsList()  

    Methods inherited from class com.onenetwork.platform.common.Model

    addWarning, copyTransientFields, diff, enableKeyCoordination, fromJSONObject, getActionName, getAttribute, getAttributeValue, getLastModifiedDate, getLastModifiedUser, getMDF, getMDFs, getMDFs, getRider, getRider, getRiders, getSysId, getTransientField, getTransientFields, getUdf, getUdfNames, getUdfs, getWarnings, setActionName, setAttribute, setError, setLastModifiedDate, setLastModifiedUser, setMDF, setSysId, setTransientField, setUdf, toJSONObject, toJSONObject, toJSONObjectExternal, toJSONObjectFullySerialized, toString, toXML

    Methods inherited from class java.lang.Object

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

    • inputRefId

      protected java.lang.String inputRefId
    • error

      protected StatusMessage error
    • levelModifiedDate

      protected java.util.Calendar levelModifiedDate
    • permissionType

      protected java.lang.String permissionType
    • permissionValue

      protected java.lang.String permissionValue
    • udfs

      protected com.onenetwork.platform.common.NameValuePairList udfs
    • mdFsList

      protected java.util.List<javax.xml.bind.JAXBElement<? extends com.onenetwork.platform.common.MDFs>> mdFsList
    • attributes

      protected java.util.List<AttributeValue> attributes
    • parent

      protected Template parent
      Reference to the parent Template
    • MODEL_TYPE

      public static final com.onenetwork.platform.data.model.impl.ModelType MODEL_TYPE
      Constant reference to the ModelType for this JAXB.
    • MODEL_LEVEL_TYPE

      public static final com.onenetwork.platform.data.model.impl.ModelLevelType MODEL_LEVEL_TYPE
      Constant reference to the ModelLevelType for this JAXB.
    • STANDARD_MODEL_NAME

      public static final java.lang.String STANDARD_MODEL_NAME
      Constant reference to the standard model name for this JAXB.
  • Constructor Details

  • Method Details

    • getInputRefId

      public java.lang.String getInputRefId()
      Gets the value of the inputRefId property.
      Returns:
      possible object is String
    • setInputRefId

      public void setInputRefId​(java.lang.String value)
      Sets the value of the inputRefId property.
      Parameters:
      value - allowed object is String
    • isSetInputRefId

      public boolean isSetInputRefId()
    • getError

      public StatusMessage getError()
      Gets the value of the error property.
      Specified by:
      getError in interface Model
      Overrides:
      getError in class com.onenetwork.platform.common.Model
      Returns:
      possible object is ErrorDef
    • setError

      public void setError​(StatusMessage value)
      Sets the value of the error property.
      Specified by:
      setError in interface Model
      Overrides:
      setError in class com.onenetwork.platform.common.Model
      Parameters:
      value - allowed object is ErrorDef
    • isSetError

      public boolean isSetError()
    • getLevelModifiedDate

      public java.util.Calendar getLevelModifiedDate()
      Gets the value of the levelModifiedDate property.
      Returns:
      possible object is String
    • setLevelModifiedDate

      public void setLevelModifiedDate​(java.util.Calendar value)
      Sets the value of the levelModifiedDate property.
      Parameters:
      value - allowed object is String
    • isSetLevelModifiedDate

      public boolean isSetLevelModifiedDate()
    • getPermissionType

      public java.lang.String getPermissionType()
      Gets the value of the permissionType property.
      Returns:
      possible object is String
    • setPermissionType

      public void setPermissionType​(java.lang.String value)
      Sets the value of the permissionType property.
      Parameters:
      value - allowed object is String
    • isSetPermissionType

      public boolean isSetPermissionType()
    • getPermissionValue

      public java.lang.String getPermissionValue()
      Gets the value of the permissionValue property.
      Returns:
      possible object is String
    • setPermissionValue

      public void setPermissionValue​(java.lang.String value)
      Sets the value of the permissionValue property.
      Parameters:
      value - allowed object is String
    • isSetPermissionValue

      public boolean isSetPermissionValue()
    • getUdfs

      public com.onenetwork.platform.common.NameValuePairList getUdfs()
      Gets the value of the udfs property.
      Overrides:
      getUdfs in class com.onenetwork.platform.common.Model
      Returns:
      possible object is NameValuePairList
    • setUdfs

      public void setUdfs​(com.onenetwork.platform.common.NameValuePairList value)
      Sets the value of the udfs property.
      Overrides:
      setUdfs in class com.onenetwork.platform.common.Model
      Parameters:
      value - allowed object is NameValuePairList
    • isSetUdfs

      public boolean isSetUdfs()
      Overrides:
      isSetUdfs in class com.onenetwork.platform.common.Model
    • getMDFsList

      public java.util.List<javax.xml.bind.JAXBElement<? extends com.onenetwork.platform.common.MDFs>> getMDFsList()
      Gets the value of the mdFsList 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 mdFsList property.

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

          getMDFsList().add(newItem);
       

      Objects of the following type(s) are allowed in the list JAXBElement<DummyMDFs> JAXBElement<MDFs>

      Overrides:
      getMDFsList in class com.onenetwork.platform.common.Model
    • isSetMDFsList

      public boolean isSetMDFsList()
    • unsetMDFsList

      public void unsetMDFsList()
    • getAttributes

      public java.util.List<AttributeValue> getAttributes()
      Gets the value of the attributes 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 attributes property.

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

          getAttributes().add(newItem);
       

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

      Overrides:
      getAttributes in class com.onenetwork.platform.common.Model
    • isSetAttributes

      public boolean isSetAttributes()
    • unsetAttributes

      public void unsetAttributes()
    • getParent

      public Template getParent()
      Returns the parent Template. This is an in-memory retrieval and does not perform a database lookup
      Specified by:
      getParent in interface com.onenetwork.platform.common.impl.Child<Template>
      Returns:
      parent Template
    • setParent

      public void setParent​(Template parent)
      Sets the parent Template. This is an in-memory set and does not perform a database write
      Specified by:
      setParent in interface com.onenetwork.platform.common.impl.Child<Template>
      Parameters:
      parent - new parent Template
    • equals

      public boolean equals​(java.lang.Object obj)
      Description copied from interface: Model
      A Model object is considered "equal" to another Model object if it is a Model of the same type and its Natural Key fields are identical.
      Specified by:
      equals in interface Model
      Overrides:
      equals in class java.lang.Object
      Parameters:
      obj - object to compare
      Returns:
      true if the object is the same type of Model with identical Natural Key fields
    • hashCode

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

      protected java.lang.String internalToString()
      Overrides:
      internalToString in class com.onenetwork.platform.common.Model
    • toStrContrib

      public java.lang.String toStrContrib()
      Not intended for use by Clients
    • getModelType

      public com.onenetwork.platform.data.model.impl.ModelType getModelType()
      methods to get ModelType for this JAXB.
      Overrides:
      getModelType in class com.onenetwork.platform.common.Model
    • getModelLevelType

      public com.onenetwork.platform.data.model.impl.ModelLevelType getModelLevelType()
      methods to get ModelLevelType for this JAXB.
      Overrides:
      getModelLevelType in class com.onenetwork.platform.common.Model
    • getStandardModelName

      public java.lang.String getStandardModelName()
      method to get standard model name for this JAXB.
      Overrides:
      getStandardModelName in class com.onenetwork.platform.common.Model