Class Singleton

java.lang.Object
com.onenetwork.platform.common.Model
com.onenetwork.platform.common.Singleton
All Implemented Interfaces:
Model, java.io.Serializable

public class Singleton
extends com.onenetwork.platform.common.Model
implements java.io.Serializable
Singleton represents an individual item with a unique identifier. The unique identifier can be a serial number, radio frequency identifier or any other unique value. Some items need to be tracked at an individual item instance level rather than just a count of items. For example, tracking an individual pencil is not necessary. But a laptop or TV might require tracking at the individual item level. Each item which can be individually identified should be represented as a singleton. In some scenarios, a singleton may contain other singletons. For example, a "car" singleton might include both an "engine" singleton and a "transmission" singleton. To represent this, we would have three singletons - one for the car, one for the engine and one for the transmission. The engine and transmission singletons would populate their Parent singleton reference to point back to the car singleton. Some singletons may additionally contain references to non-serialized data. For example, the "car" may contain 4 tires, which are not serially tracked. Instead of representing these as separate singletons, they should be represented as a child SingletonLine of the "car" singleton, with a quantity of 4.

Java class for Singleton complex type.

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

 <complexType name="Singleton">
   <complexContent>
     <extension base="{http://www.onenetwork.com/Platform}Model">
       <sequence>
         <element name="ActionExecTime" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="ActionName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <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="SingletonNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonEnterpriseName" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="ValueChainId" type="{http://www.w3.org/2001/XMLSchema}long"/>
         <element name="ParentSingletonNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="ParentSingletonEnterpriseName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonCurrentSiteEnterpriseName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonCurrentSiteOrganizationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonCurrentSiteName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonPreviousSiteEnterpriseName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonPreviousSiteOrganizationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonPreviousSiteName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonNextSiteEnterpriseName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonNextSiteOrganizationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonNextSiteName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonOriginSiteEnterpriseName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonOriginSiteOrganizationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonOriginSiteName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonCurrentPosition" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="State" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="CreationDate" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="LastModifiedDate" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="LastModifiedUser" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="LevelModifiedDate" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="LastComputedDate" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="LastTouchedDate" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="ElectronicProductCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="MfgDate" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="ExpirationDate" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="ExpirationWarningTolerance" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
         <element name="ExpectedArrivalDate" type="{http://www.onenetwork.com/Platform}DateTime" minOccurs="0"/>
         <element name="Weight" type="{http://www.onenetwork.com/Platform}NullableDouble" minOccurs="0"/>
         <element name="WeightUnitOfMeasure" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Volume" type="{http://www.onenetwork.com/Platform}NullableDouble" minOccurs="0"/>
         <element name="VolumeUnitOfMeasure" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SerialNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="UniqueIdentifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="RFID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="SingletonLine" type="{http://www.onenetwork.com/Platform}SingletonLine" maxOccurs="unbounded" minOccurs="0"/>
         <element name="Udfs" type="{http://www.onenetwork.com/Platform}NameValuePairList" minOccurs="0"/>
         <element name="Issue" type="{http://www.onenetwork.com/Platform}Issue" maxOccurs="unbounded" minOccurs="0"/>
         <element name="ItemEnterpriseName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="ItemName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="CreationUser" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="CreationTemplateName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="CreationTemplateBaseTemplateName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="CreationTemplateBaseTemplateLevelType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="CreationTemplateOwningOrgName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="CreationTemplateOwningOrgEnterpriseName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="CreationTemplateOwningUserName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="CreationTemplateOwningUserEnterpriseName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Singleton" type="{http://www.onenetwork.com/Platform}Singleton" maxOccurs="unbounded" 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 Details

  • Constructor Details

  • Method Details

    • getActionExecTime

      public java.util.Calendar getActionExecTime()
      Gets the value of the actionExecTime property.
      Returns:
      possible object is String
    • setActionExecTime

      public void setActionExecTime​(java.util.Calendar value)
      Sets the value of the actionExecTime property.
      Parameters:
      value - allowed object is String
    • isSetActionExecTime

      public boolean isSetActionExecTime()
    • getActionName

      public java.lang.String getActionName()
      Gets the value of the actionName property.
      Overrides:
      getActionName in class com.onenetwork.platform.common.Model
      Returns:
      possible object is String
    • setActionName

      public void setActionName​(java.lang.String value)
      Sets the value of the actionName property.
      Overrides:
      setActionName in class com.onenetwork.platform.common.Model
      Parameters:
      value - allowed object is String
    • isSetActionName

      public boolean isSetActionName()
    • 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()
    • getSingletonNumber

      public java.lang.String getSingletonNumber()
      Gets the value of the singletonNumber property.
      Returns:
      possible object is String
    • setSingletonNumber

      public void setSingletonNumber​(java.lang.String value)
      Sets the value of the singletonNumber property.
      Parameters:
      value - allowed object is String
    • isSetSingletonNumber

      public boolean isSetSingletonNumber()
    • getSingletonEnterpriseName

      public java.lang.String getSingletonEnterpriseName()
      Gets the value of the singletonEnterpriseName property.
      Returns:
      possible object is String
    • isSetSingletonEnterpriseName

      public boolean isSetSingletonEnterpriseName()
    • getValueChainId

      public long getValueChainId()
      Gets the value of the valueChainId property.
    • setValueChainId

      public void setValueChainId​(long value)
      Sets the value of the valueChainId property.
    • isSetValueChainId

      public boolean isSetValueChainId()
    • getParentSingletonNumber

      public java.lang.String getParentSingletonNumber()
      Gets the value of the parentSingletonNumber property.
      Returns:
      possible object is String
    • isSetParentSingletonNumber

      public boolean isSetParentSingletonNumber()
    • getParentSingletonEnterpriseName

      public java.lang.String getParentSingletonEnterpriseName()
      Gets the value of the parentSingletonEnterpriseName property.
      Returns:
      possible object is String
    • isSetParentSingletonEnterpriseName

      public boolean isSetParentSingletonEnterpriseName()
    • getSingletonCurrentSiteEnterpriseName

      public java.lang.String getSingletonCurrentSiteEnterpriseName()
      Gets the value of the singletonCurrentSiteEnterpriseName property.
      Returns:
      possible object is String
    • isSetSingletonCurrentSiteEnterpriseName

      public boolean isSetSingletonCurrentSiteEnterpriseName()
    • getSingletonCurrentSiteOrganizationName

      public java.lang.String getSingletonCurrentSiteOrganizationName()
      Gets the value of the singletonCurrentSiteOrganizationName property.
      Returns:
      possible object is String
    • isSetSingletonCurrentSiteOrganizationName

      public boolean isSetSingletonCurrentSiteOrganizationName()
    • getSingletonCurrentSiteName

      public java.lang.String getSingletonCurrentSiteName()
      Gets the value of the singletonCurrentSiteName property.
      Returns:
      possible object is String
    • isSetSingletonCurrentSiteName

      public boolean isSetSingletonCurrentSiteName()
    • getSingletonPreviousSiteEnterpriseName

      public java.lang.String getSingletonPreviousSiteEnterpriseName()
      Gets the value of the singletonPreviousSiteEnterpriseName property.
      Returns:
      possible object is String
    • isSetSingletonPreviousSiteEnterpriseName

      public boolean isSetSingletonPreviousSiteEnterpriseName()
    • getSingletonPreviousSiteOrganizationName

      public java.lang.String getSingletonPreviousSiteOrganizationName()
      Gets the value of the singletonPreviousSiteOrganizationName property.
      Returns:
      possible object is String
    • isSetSingletonPreviousSiteOrganizationName

      public boolean isSetSingletonPreviousSiteOrganizationName()
    • getSingletonPreviousSiteName

      public java.lang.String getSingletonPreviousSiteName()
      Gets the value of the singletonPreviousSiteName property.
      Returns:
      possible object is String
    • isSetSingletonPreviousSiteName

      public boolean isSetSingletonPreviousSiteName()
    • getSingletonNextSiteEnterpriseName

      public java.lang.String getSingletonNextSiteEnterpriseName()
      Gets the value of the singletonNextSiteEnterpriseName property.
      Returns:
      possible object is String
    • isSetSingletonNextSiteEnterpriseName

      public boolean isSetSingletonNextSiteEnterpriseName()
    • getSingletonNextSiteOrganizationName

      public java.lang.String getSingletonNextSiteOrganizationName()
      Gets the value of the singletonNextSiteOrganizationName property.
      Returns:
      possible object is String
    • isSetSingletonNextSiteOrganizationName

      public boolean isSetSingletonNextSiteOrganizationName()
    • getSingletonNextSiteName

      public java.lang.String getSingletonNextSiteName()
      Gets the value of the singletonNextSiteName property.
      Returns:
      possible object is String
    • isSetSingletonNextSiteName

      public boolean isSetSingletonNextSiteName()
    • getSingletonOriginSiteEnterpriseName

      public java.lang.String getSingletonOriginSiteEnterpriseName()
      Gets the value of the singletonOriginSiteEnterpriseName property.
      Returns:
      possible object is String
    • isSetSingletonOriginSiteEnterpriseName

      public boolean isSetSingletonOriginSiteEnterpriseName()
    • getSingletonOriginSiteOrganizationName

      public java.lang.String getSingletonOriginSiteOrganizationName()
      Gets the value of the singletonOriginSiteOrganizationName property.
      Returns:
      possible object is String
    • isSetSingletonOriginSiteOrganizationName

      public boolean isSetSingletonOriginSiteOrganizationName()
    • getSingletonOriginSiteName

      public java.lang.String getSingletonOriginSiteName()
      Gets the value of the singletonOriginSiteName property.
      Returns:
      possible object is String
    • isSetSingletonOriginSiteName

      public boolean isSetSingletonOriginSiteName()
    • getSingletonCurrentPosition

      public java.lang.String getSingletonCurrentPosition()
      Gets the value of the singletonCurrentPosition property.
      Returns:
      possible object is String
    • setSingletonCurrentPosition

      public void setSingletonCurrentPosition​(java.lang.String value)
      Sets the value of the singletonCurrentPosition property.
      Parameters:
      value - allowed object is String
    • isSetSingletonCurrentPosition

      public boolean isSetSingletonCurrentPosition()
    • getState

      public java.lang.String getState()
      Gets the value of the state property.
      Returns:
      possible object is String
    • setState

      public void setState​(java.lang.String value)
      Sets the value of the state property.
      Parameters:
      value - allowed object is String
    • isSetState

      public boolean isSetState()
    • getCreationDate

      public java.util.Calendar getCreationDate()
      Gets the value of the creationDate property.
      Returns:
      possible object is String
    • setCreationDate

      public void setCreationDate​(java.util.Calendar value)
      Sets the value of the creationDate property.
      Parameters:
      value - allowed object is String
    • isSetCreationDate

      public boolean isSetCreationDate()
    • getLastModifiedDate

      public java.util.Calendar getLastModifiedDate()
      Gets the value of the lastModifiedDate property.
      Specified by:
      getLastModifiedDate in interface Model
      Overrides:
      getLastModifiedDate in class com.onenetwork.platform.common.Model
      Returns:
      possible object is String
    • setLastModifiedDate

      public void setLastModifiedDate​(java.util.Calendar value)
      Sets the value of the lastModifiedDate property.
      Specified by:
      setLastModifiedDate in interface Model
      Overrides:
      setLastModifiedDate in class com.onenetwork.platform.common.Model
      Parameters:
      value - allowed object is String
    • isSetLastModifiedDate

      public boolean isSetLastModifiedDate()
    • getLastModifiedUser

      public java.lang.String getLastModifiedUser()
      Gets the value of the lastModifiedUser property.
      Specified by:
      getLastModifiedUser in interface Model
      Overrides:
      getLastModifiedUser in class com.onenetwork.platform.common.Model
      Returns:
      possible object is String
    • setLastModifiedUser

      public void setLastModifiedUser​(java.lang.String value)
      Sets the value of the lastModifiedUser property.
      Specified by:
      setLastModifiedUser in interface Model
      Overrides:
      setLastModifiedUser in class com.onenetwork.platform.common.Model
      Parameters:
      value - allowed object is String
    • isSetLastModifiedUser

      public boolean isSetLastModifiedUser()
    • 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()
    • getLastComputedDate

      public java.util.Calendar getLastComputedDate()
      Gets the value of the lastComputedDate property.
      Returns:
      possible object is String
    • setLastComputedDate

      public void setLastComputedDate​(java.util.Calendar value)
      Sets the value of the lastComputedDate property.
      Parameters:
      value - allowed object is String
    • isSetLastComputedDate

      public boolean isSetLastComputedDate()
    • getLastTouchedDate

      public java.util.Calendar getLastTouchedDate()
      Gets the value of the lastTouchedDate property.
      Returns:
      possible object is String
    • setLastTouchedDate

      public void setLastTouchedDate​(java.util.Calendar value)
      Sets the value of the lastTouchedDate property.
      Parameters:
      value - allowed object is String
    • isSetLastTouchedDate

      public boolean isSetLastTouchedDate()
    • getElectronicProductCode

      public java.lang.String getElectronicProductCode()
      Gets the value of the electronicProductCode property.
      Returns:
      possible object is String
    • setElectronicProductCode

      public void setElectronicProductCode​(java.lang.String value)
      Sets the value of the electronicProductCode property.
      Parameters:
      value - allowed object is String
    • isSetElectronicProductCode

      public boolean isSetElectronicProductCode()
    • getMfgDate

      public java.util.Calendar getMfgDate()
      Gets the value of the mfgDate property.
      Returns:
      possible object is String
    • setMfgDate

      public void setMfgDate​(java.util.Calendar value)
      Sets the value of the mfgDate property.
      Parameters:
      value - allowed object is String
    • isSetMfgDate

      public boolean isSetMfgDate()
    • getExpirationDate

      public java.util.Calendar getExpirationDate()
      Gets the value of the expirationDate property.
      Returns:
      possible object is String
    • setExpirationDate

      public void setExpirationDate​(java.util.Calendar value)
      Sets the value of the expirationDate property.
      Parameters:
      value - allowed object is String
    • isSetExpirationDate

      public boolean isSetExpirationDate()
    • setExpirationWarningTolerance

      public void setExpirationWarningTolerance​(long value)
      Sets the value of the expirationWarningTolerance property.
      Parameters:
      value - allowed object is Long
    • isSetExpirationWarningTolerance

      public boolean isSetExpirationWarningTolerance()
    • getExpectedArrivalDate

      public java.util.Calendar getExpectedArrivalDate()
      Gets the value of the expectedArrivalDate property.
      Returns:
      possible object is String
    • setExpectedArrivalDate

      public void setExpectedArrivalDate​(java.util.Calendar value)
      Sets the value of the expectedArrivalDate property.
      Parameters:
      value - allowed object is String
    • isSetExpectedArrivalDate

      public boolean isSetExpectedArrivalDate()
    • setWeight

      public void setWeight​(double value)
      Sets the value of the weight property.
      Parameters:
      value - allowed object is String
    • isSetWeight

      public boolean isSetWeight()
    • getWeightUnitOfMeasure

      public java.lang.String getWeightUnitOfMeasure()
      Gets the value of the weightUnitOfMeasure property.
      Returns:
      possible object is String
    • setWeightUnitOfMeasure

      public void setWeightUnitOfMeasure​(java.lang.String value)
      Sets the value of the weightUnitOfMeasure property.
      Parameters:
      value - allowed object is String
    • isSetWeightUnitOfMeasure

      public boolean isSetWeightUnitOfMeasure()
    • setVolume

      public void setVolume​(double value)
      Sets the value of the volume property.
      Parameters:
      value - allowed object is String
    • isSetVolume

      public boolean isSetVolume()
    • getVolumeUnitOfMeasure

      public java.lang.String getVolumeUnitOfMeasure()
      Gets the value of the volumeUnitOfMeasure property.
      Returns:
      possible object is String
    • setVolumeUnitOfMeasure

      public void setVolumeUnitOfMeasure​(java.lang.String value)
      Sets the value of the volumeUnitOfMeasure property.
      Parameters:
      value - allowed object is String
    • isSetVolumeUnitOfMeasure

      public boolean isSetVolumeUnitOfMeasure()
    • getSerialNumber

      public java.lang.String getSerialNumber()
      Gets the value of the serialNumber property.
      Returns:
      possible object is String
    • setSerialNumber

      public void setSerialNumber​(java.lang.String value)
      Sets the value of the serialNumber property.
      Parameters:
      value - allowed object is String
    • isSetSerialNumber

      public boolean isSetSerialNumber()
    • getUniqueIdentifier

      public java.lang.String getUniqueIdentifier()
      Gets the value of the uniqueIdentifier property.
      Returns:
      possible object is String
    • setUniqueIdentifier

      public void setUniqueIdentifier​(java.lang.String value)
      Sets the value of the uniqueIdentifier property.
      Parameters:
      value - allowed object is String
    • isSetUniqueIdentifier

      public boolean isSetUniqueIdentifier()
    • 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 is String
    • isSetDescription

      public boolean isSetDescription()
    • getRFID

      public java.lang.String getRFID()
      Gets the value of the rfid property.
      Returns:
      possible object is String
    • setRFID

      public void setRFID​(java.lang.String value)
      Sets the value of the rfid property.
      Parameters:
      value - allowed object is String
    • isSetRFID

      public boolean isSetRFID()
    • getSingletonLines

      public java.util.List<SingletonLine> getSingletonLines()
      Gets the value of the singletonLines 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 singletonLines property.

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

          getSingletonLines().add(newItem);
       

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

    • isSetSingletonLines

      public boolean isSetSingletonLines()
    • unsetSingletonLines

      public void unsetSingletonLines()
    • 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
    • getIssues

      public java.util.List<Issue> getIssues()
      Gets the value of the issues 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 issues property.

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

          getIssues().add(newItem);
       

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

    • isSetIssues

      public boolean isSetIssues()
    • unsetIssues

      public void unsetIssues()
    • getItemEnterpriseName

      public java.lang.String getItemEnterpriseName()
      Gets the value of the itemEnterpriseName property.
      Returns:
      possible object is String
    • isSetItemEnterpriseName

      public boolean isSetItemEnterpriseName()
    • getItemName

      public java.lang.String getItemName()
      Gets the value of the itemName property.
      Returns:
      possible object is String
    • isSetItemName

      public boolean isSetItemName()
    • getCreationUser

      public java.lang.String getCreationUser()
      Gets the value of the creationUser property.
      Returns:
      possible object is String
    • setCreationUser

      public void setCreationUser​(java.lang.String value)
      Sets the value of the creationUser property.
      Parameters:
      value - allowed object is String
    • isSetCreationUser

      public boolean isSetCreationUser()
    • getCreationTemplateName

      public java.lang.String getCreationTemplateName()
      Gets the value of the creationTemplateName property.
      Returns:
      possible object is String
    • isSetCreationTemplateName

      public boolean isSetCreationTemplateName()
    • getCreationTemplateBaseTemplateName

      public java.lang.String getCreationTemplateBaseTemplateName()
      Gets the value of the creationTemplateBaseTemplateName property.
      Returns:
      possible object is String
    • isSetCreationTemplateBaseTemplateName

      public boolean isSetCreationTemplateBaseTemplateName()
    • getCreationTemplateBaseTemplateLevelType

      public java.lang.String getCreationTemplateBaseTemplateLevelType()
      Gets the value of the creationTemplateBaseTemplateLevelType property.
      Returns:
      possible object is String
    • isSetCreationTemplateBaseTemplateLevelType

      public boolean isSetCreationTemplateBaseTemplateLevelType()
    • getCreationTemplateOwningOrgName

      public java.lang.String getCreationTemplateOwningOrgName()
      Gets the value of the creationTemplateOwningOrgName property.
      Returns:
      possible object is String
    • isSetCreationTemplateOwningOrgName

      public boolean isSetCreationTemplateOwningOrgName()
    • getCreationTemplateOwningOrgEnterpriseName

      public java.lang.String getCreationTemplateOwningOrgEnterpriseName()
      Gets the value of the creationTemplateOwningOrgEnterpriseName property.
      Returns:
      possible object is String
    • isSetCreationTemplateOwningOrgEnterpriseName

      public boolean isSetCreationTemplateOwningOrgEnterpriseName()
    • getCreationTemplateOwningUserName

      public java.lang.String getCreationTemplateOwningUserName()
      Gets the value of the creationTemplateOwningUserName property.
      Returns:
      possible object is String
    • isSetCreationTemplateOwningUserName

      public boolean isSetCreationTemplateOwningUserName()
    • getCreationTemplateOwningUserEnterpriseName

      public java.lang.String getCreationTemplateOwningUserEnterpriseName()
      Gets the value of the creationTemplateOwningUserEnterpriseName property.
      Returns:
      possible object is String
    • isSetCreationTemplateOwningUserEnterpriseName

      public boolean isSetCreationTemplateOwningUserEnterpriseName()
    • getChildSingletons

      public java.util.List<Singleton> getChildSingletons()
      Gets the value of the childSingletons 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 childSingletons property.

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

          getChildSingletons().add(newItem);
       

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

    • isSetChildSingletons

      public boolean isSetChildSingletons()
    • unsetChildSingletons

      public void unsetChildSingletons()
    • 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()
    • setSingletonEnterpriseName

      public void setSingletonEnterpriseName​(java.lang.String value)
      Sets the value of SingletonEnterpriseName, and also nullifies the following surrogate ids: SysSingletonEntId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonEnterpriseName - the following will also be nullified: SysSingletonEntId
    • setParentSingletonNumber

      public void setParentSingletonNumber​(java.lang.String value)
      Sets the value of ParentSingletonNumber, and also nullifies the following surrogate ids: SysParentId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for ParentSingletonNumber - the following will also be nullified: SysParentId
    • setParentSingletonEnterpriseName

      public void setParentSingletonEnterpriseName​(java.lang.String value)
      Sets the value of ParentSingletonEnterpriseName, and also nullifies the following surrogate ids: SysParentId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for ParentSingletonEnterpriseName - the following will also be nullified: SysParentId
    • setSingletonCurrentSiteEnterpriseName

      public void setSingletonCurrentSiteEnterpriseName​(java.lang.String value)
      Sets the value of SingletonCurrentSiteEnterpriseName, and also nullifies the following surrogate ids: SysCurrentSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonCurrentSiteEnterpriseName - the following will also be nullified: SysCurrentSiteId
    • setSingletonCurrentSiteOrganizationName

      public void setSingletonCurrentSiteOrganizationName​(java.lang.String value)
      Sets the value of SingletonCurrentSiteOrganizationName, and also nullifies the following surrogate ids: SysCurrentSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonCurrentSiteOrganizationName - the following will also be nullified: SysCurrentSiteId
    • setSingletonCurrentSiteName

      public void setSingletonCurrentSiteName​(java.lang.String value)
      Sets the value of SingletonCurrentSiteName, and also nullifies the following surrogate ids: SysCurrentSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonCurrentSiteName - the following will also be nullified: SysCurrentSiteId
    • setSingletonPreviousSiteEnterpriseName

      public void setSingletonPreviousSiteEnterpriseName​(java.lang.String value)
      Sets the value of SingletonPreviousSiteEnterpriseName, and also nullifies the following surrogate ids: SysPreviousSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonPreviousSiteEnterpriseName - the following will also be nullified: SysPreviousSiteId
    • setSingletonPreviousSiteOrganizationName

      public void setSingletonPreviousSiteOrganizationName​(java.lang.String value)
      Sets the value of SingletonPreviousSiteOrganizationName, and also nullifies the following surrogate ids: SysPreviousSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonPreviousSiteOrganizationName - the following will also be nullified: SysPreviousSiteId
    • setSingletonPreviousSiteName

      public void setSingletonPreviousSiteName​(java.lang.String value)
      Sets the value of SingletonPreviousSiteName, and also nullifies the following surrogate ids: SysPreviousSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonPreviousSiteName - the following will also be nullified: SysPreviousSiteId
    • setSingletonNextSiteEnterpriseName

      public void setSingletonNextSiteEnterpriseName​(java.lang.String value)
      Sets the value of SingletonNextSiteEnterpriseName, and also nullifies the following surrogate ids: SysNextSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonNextSiteEnterpriseName - the following will also be nullified: SysNextSiteId
    • setSingletonNextSiteOrganizationName

      public void setSingletonNextSiteOrganizationName​(java.lang.String value)
      Sets the value of SingletonNextSiteOrganizationName, and also nullifies the following surrogate ids: SysNextSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonNextSiteOrganizationName - the following will also be nullified: SysNextSiteId
    • setSingletonNextSiteName

      public void setSingletonNextSiteName​(java.lang.String value)
      Sets the value of SingletonNextSiteName, and also nullifies the following surrogate ids: SysNextSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonNextSiteName - the following will also be nullified: SysNextSiteId
    • setSingletonOriginSiteEnterpriseName

      public void setSingletonOriginSiteEnterpriseName​(java.lang.String value)
      Sets the value of SingletonOriginSiteEnterpriseName, and also nullifies the following surrogate ids: SysOriginSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonOriginSiteEnterpriseName - the following will also be nullified: SysOriginSiteId
    • setSingletonOriginSiteOrganizationName

      public void setSingletonOriginSiteOrganizationName​(java.lang.String value)
      Sets the value of SingletonOriginSiteOrganizationName, and also nullifies the following surrogate ids: SysOriginSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonOriginSiteOrganizationName - the following will also be nullified: SysOriginSiteId
    • setSingletonOriginSiteName

      public void setSingletonOriginSiteName​(java.lang.String value)
      Sets the value of SingletonOriginSiteName, and also nullifies the following surrogate ids: SysOriginSiteId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for SingletonOriginSiteName - the following will also be nullified: SysOriginSiteId
    • setItemEnterpriseName

      public void setItemEnterpriseName​(java.lang.String value)
      Sets the value of ItemEnterpriseName, and also nullifies the following surrogate ids: SysItemId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for ItemEnterpriseName - the following will also be nullified: SysItemId
    • setItemName

      public void setItemName​(java.lang.String value)
      Sets the value of ItemName, and also nullifies the following surrogate ids: SysItemId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for ItemName - the following will also be nullified: SysItemId
    • setCreationTemplateName

      public void setCreationTemplateName​(java.lang.String value)
      Sets the value of CreationTemplateName, and also nullifies the following surrogate ids: SysCreationTemplateId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for CreationTemplateName - the following will also be nullified: SysCreationTemplateId
    • setCreationTemplateBaseTemplateName

      public void setCreationTemplateBaseTemplateName​(java.lang.String value)
      Sets the value of CreationTemplateBaseTemplateName, and also nullifies the following surrogate ids: SysCreationTemplateId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for CreationTemplateBaseTemplateName - the following will also be nullified: SysCreationTemplateId
    • setCreationTemplateBaseTemplateLevelType

      public void setCreationTemplateBaseTemplateLevelType​(java.lang.String value)
      Sets the value of CreationTemplateBaseTemplateLevelType, and also nullifies the following surrogate ids: SysCreationTemplateId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for CreationTemplateBaseTemplateLevelType - the following will also be nullified: SysCreationTemplateId
    • setCreationTemplateOwningOrgName

      public void setCreationTemplateOwningOrgName​(java.lang.String value)
      Sets the value of CreationTemplateOwningOrgName, and also nullifies the following surrogate ids: SysCreationTemplateId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for CreationTemplateOwningOrgName - the following will also be nullified: SysCreationTemplateId
    • setCreationTemplateOwningOrgEnterpriseName

      public void setCreationTemplateOwningOrgEnterpriseName​(java.lang.String value)
      Sets the value of CreationTemplateOwningOrgEnterpriseName, and also nullifies the following surrogate ids: SysCreationTemplateId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for CreationTemplateOwningOrgEnterpriseName - the following will also be nullified: SysCreationTemplateId
    • setCreationTemplateOwningUserName

      public void setCreationTemplateOwningUserName​(java.lang.String value)
      Sets the value of CreationTemplateOwningUserName, and also nullifies the following surrogate ids: SysCreationTemplateId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for CreationTemplateOwningUserName - the following will also be nullified: SysCreationTemplateId
    • setCreationTemplateOwningUserEnterpriseName

      public void setCreationTemplateOwningUserEnterpriseName​(java.lang.String value)
      Sets the value of CreationTemplateOwningUserEnterpriseName, and also nullifies the following surrogate ids: SysCreationTemplateId. This nullification is done to ensure that a client can set either natural keys or sys id as desired. If you as a client wish to populate *both* natural and surrogate ids, you should set the natural keys first, then set the surrogate ids passing 'false' as the second parameter
      Parameters:
      value - new value for CreationTemplateOwningUserEnterpriseName - the following will also be nullified: SysCreationTemplateId
    • getExpirationWarningTolerance

      public long getExpirationWarningTolerance()
    • unsetExpirationWarningTolerance

      public void unsetExpirationWarningTolerance()
    • getWeight

      public double getWeight()
    • unsetWeight

      public void unsetWeight()
    • getVolume

      public double getVolume()
    • unsetVolume

      public void unsetVolume()
    • issueOn

      public com.onenetwork.platform.common.Issue issueOn​(java.lang.String issueName, IssueSeverity issueSeverity)
      Utility method to create an issue and set it on JAXB
    • issueOff

      public com.onenetwork.platform.common.Issue issueOff​(java.lang.String issueName)
      Utility method to create an issue and set it on JAXB
    • 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
    • getSysSingletonEntId

      public java.lang.Long getSysSingletonEntId()
      Returns the surrogate id value for SysSingletonEntId. After reading a model, this will always match with the corresponding natural keys, which are: singletonEnterpriseName
    • setSysSingletonEntId

      public void setSysSingletonEntId​(java.lang.Long value, boolean nullifyNaturalKeys)
      Sets the surrogate id value for SysSingletonEntId. As a client, when you want to update the model in the database, you may set values either by natural key or by sys id, or by both. Calling this method with 'true' will nullify the natural keys for this surrogate key: singletonEnterpriseName. This ensures the values don't conflict. If you are 'populating' an object and want to set both natural and surrogate keys, you should set the natural keys first, then call this method with 'false' for nullifyNaturalKeys.
      Parameters:
      value - new value for SysSingletonEntId
      nullifyNaturalKeys - true to nullify the related natural keys (singletonEnterpriseName), or false to leave as is - please note that you can pass either surrogate id or natural keys to the server write API, or both
    • getSysParentId

      public java.lang.Long getSysParentId()
      Returns the surrogate id value for SysParentId. After reading a model, this will always match with the corresponding natural keys, which are: parentSingletonNumber, parentSingletonEnterpriseName
    • setSysParentId

      public void setSysParentId​(java.lang.Long value, boolean nullifyNaturalKeys)
      Sets the surrogate id value for SysParentId. As a client, when you want to update the model in the database, you may set values either by natural key or by sys id, or by both. Calling this method with 'true' will nullify the natural keys for this surrogate key: parentSingletonNumber, parentSingletonEnterpriseName. This ensures the values don't conflict. If you are 'populating' an object and want to set both natural and surrogate keys, you should set the natural keys first, then call this method with 'false' for nullifyNaturalKeys.
      Parameters:
      value - new value for SysParentId
      nullifyNaturalKeys - true to nullify the related natural keys (parentSingletonNumber, parentSingletonEnterpriseName), or false to leave as is - please note that you can pass either surrogate id or natural keys to the server write API, or both
    • getSysCurrentSiteId

      public java.lang.Long getSysCurrentSiteId()
      Returns the surrogate id value for SysCurrentSiteId. After reading a model, this will always match with the corresponding natural keys, which are: singletonCurrentSiteEnterpriseName, singletonCurrentSiteOrganizationName, singletonCurrentSiteName
    • setSysCurrentSiteId

      public void setSysCurrentSiteId​(java.lang.Long value, boolean nullifyNaturalKeys)
      Sets the surrogate id value for SysCurrentSiteId. As a client, when you want to update the model in the database, you may set values either by natural key or by sys id, or by both. Calling this method with 'true' will nullify the natural keys for this surrogate key: singletonCurrentSiteEnterpriseName, singletonCurrentSiteOrganizationName, singletonCurrentSiteName. This ensures the values don't conflict. If you are 'populating' an object and want to set both natural and surrogate keys, you should set the natural keys first, then call this method with 'false' for nullifyNaturalKeys.
      Parameters:
      value - new value for SysCurrentSiteId
      nullifyNaturalKeys - true to nullify the related natural keys (singletonCurrentSiteEnterpriseName, singletonCurrentSiteOrganizationName, singletonCurrentSiteName), or false to leave as is - please note that you can pass either surrogate id or natural keys to the server write API, or both
    • getSysPreviousSiteId

      public java.lang.Long getSysPreviousSiteId()
      Returns the surrogate id value for SysPreviousSiteId. After reading a model, this will always match with the corresponding natural keys, which are: singletonPreviousSiteEnterpriseName, singletonPreviousSiteOrganizationName, singletonPreviousSiteName
    • setSysPreviousSiteId

      public void setSysPreviousSiteId​(java.lang.Long value, boolean nullifyNaturalKeys)
      Sets the surrogate id value for SysPreviousSiteId. As a client, when you want to update the model in the database, you may set values either by natural key or by sys id, or by both. Calling this method with 'true' will nullify the natural keys for this surrogate key: singletonPreviousSiteEnterpriseName, singletonPreviousSiteOrganizationName, singletonPreviousSiteName. This ensures the values don't conflict. If you are 'populating' an object and want to set both natural and surrogate keys, you should set the natural keys first, then call this method with 'false' for nullifyNaturalKeys.
      Parameters:
      value - new value for SysPreviousSiteId
      nullifyNaturalKeys - true to nullify the related natural keys (singletonPreviousSiteEnterpriseName, singletonPreviousSiteOrganizationName, singletonPreviousSiteName), or false to leave as is - please note that you can pass either surrogate id or natural keys to the server write API, or both
    • getSysNextSiteId

      public java.lang.Long getSysNextSiteId()
      Returns the surrogate id value for SysNextSiteId. After reading a model, this will always match with the corresponding natural keys, which are: singletonNextSiteEnterpriseName, singletonNextSiteOrganizationName, singletonNextSiteName
    • setSysNextSiteId

      public void setSysNextSiteId​(java.lang.Long value, boolean nullifyNaturalKeys)
      Sets the surrogate id value for SysNextSiteId. As a client, when you want to update the model in the database, you may set values either by natural key or by sys id, or by both. Calling this method with 'true' will nullify the natural keys for this surrogate key: singletonNextSiteEnterpriseName, singletonNextSiteOrganizationName, singletonNextSiteName. This ensures the values don't conflict. If you are 'populating' an object and want to set both natural and surrogate keys, you should set the natural keys first, then call this method with 'false' for nullifyNaturalKeys.
      Parameters:
      value - new value for SysNextSiteId
      nullifyNaturalKeys - true to nullify the related natural keys (singletonNextSiteEnterpriseName, singletonNextSiteOrganizationName, singletonNextSiteName), or false to leave as is - please note that you can pass either surrogate id or natural keys to the server write API, or both
    • getSysOriginSiteId

      public java.lang.Long getSysOriginSiteId()
      Returns the surrogate id value for SysOriginSiteId. After reading a model, this will always match with the corresponding natural keys, which are: singletonOriginSiteEnterpriseName, singletonOriginSiteOrganizationName, singletonOriginSiteName
    • setSysOriginSiteId

      public void setSysOriginSiteId​(java.lang.Long value, boolean nullifyNaturalKeys)
      Sets the surrogate id value for SysOriginSiteId. As a client, when you want to update the model in the database, you may set values either by natural key or by sys id, or by both. Calling this method with 'true' will nullify the natural keys for this surrogate key: singletonOriginSiteEnterpriseName, singletonOriginSiteOrganizationName, singletonOriginSiteName. This ensures the values don't conflict. If you are 'populating' an object and want to set both natural and surrogate keys, you should set the natural keys first, then call this method with 'false' for nullifyNaturalKeys.
      Parameters:
      value - new value for SysOriginSiteId
      nullifyNaturalKeys - true to nullify the related natural keys (singletonOriginSiteEnterpriseName, singletonOriginSiteOrganizationName, singletonOriginSiteName), or false to leave as is - please note that you can pass either surrogate id or natural keys to the server write API, or both
    • getSysItemId

      public java.lang.Long getSysItemId()
      Returns the surrogate id value for SysItemId. After reading a model, this will always match with the corresponding natural keys, which are: itemEnterpriseName, itemName
    • setSysItemId

      public void setSysItemId​(java.lang.Long value, boolean nullifyNaturalKeys)
      Sets the surrogate id value for SysItemId. As a client, when you want to update the model in the database, you may set values either by natural key or by sys id, or by both. Calling this method with 'true' will nullify the natural keys for this surrogate key: itemEnterpriseName, itemName. This ensures the values don't conflict. If you are 'populating' an object and want to set both natural and surrogate keys, you should set the natural keys first, then call this method with 'false' for nullifyNaturalKeys.
      Parameters:
      value - new value for SysItemId
      nullifyNaturalKeys - true to nullify the related natural keys (itemEnterpriseName, itemName), or false to leave as is - please note that you can pass either surrogate id or natural keys to the server write API, or both
    • getSysCreationTemplateId

      public java.lang.Long getSysCreationTemplateId()
      Returns the surrogate id value for SysCreationTemplateId. After reading a model, this will always match with the corresponding natural keys, which are: creationTemplateName, creationTemplateBaseTemplateName, creationTemplateBaseTemplateLevelType, creationTemplateOwningOrgName, creationTemplateOwningOrgEnterpriseName, creationTemplateOwningUserName, creationTemplateOwningUserEnterpriseName
    • setSysCreationTemplateId

      public void setSysCreationTemplateId​(java.lang.Long value, boolean nullifyNaturalKeys)
      Sets the surrogate id value for SysCreationTemplateId. As a client, when you want to update the model in the database, you may set values either by natural key or by sys id, or by both. Calling this method with 'true' will nullify the natural keys for this surrogate key: creationTemplateName, creationTemplateBaseTemplateName, creationTemplateBaseTemplateLevelType, creationTemplateOwningOrgName, creationTemplateOwningOrgEnterpriseName, creationTemplateOwningUserName, creationTemplateOwningUserEnterpriseName. This ensures the values don't conflict. If you are 'populating' an object and want to set both natural and surrogate keys, you should set the natural keys first, then call this method with 'false' for nullifyNaturalKeys.
      Parameters:
      value - new value for SysCreationTemplateId
      nullifyNaturalKeys - true to nullify the related natural keys (creationTemplateName, creationTemplateBaseTemplateName, creationTemplateBaseTemplateLevelType, creationTemplateOwningOrgName, creationTemplateOwningOrgEnterpriseName, creationTemplateOwningUserName, creationTemplateOwningUserEnterpriseName), or false to leave as is - please note that you can pass either surrogate id or natural keys to the server write API, or both