Class StorageType

java.lang.Object
com.vidispine.generated.StorageType
All Implemented Interfaces:
Serializable, Cloneable, org.jvnet.jaxb.lang.CopyTo, org.jvnet.jaxb.lang.Equals, org.jvnet.jaxb.lang.HashCode, org.jvnet.jaxb.lang.ToString

public class StorageType extends Object implements Serializable, Cloneable, org.jvnet.jaxb.lang.CopyTo, org.jvnet.jaxb.lang.Equals, org.jvnet.jaxb.lang.HashCode, org.jvnet.jaxb.lang.ToString

Java class for StorageType complex type

.

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


 <complexType name="StorageType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="id" type="{http://xml.vidispine.com/schema/vidispine}SiteIdType" minOccurs="0"/>
         <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="priority" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="capacity" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
         <element name="freeCapacity" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
         <element name="bandwidth" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
         <element name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
         <element name="method" type="{http://xml.vidispine.com/schema/vidispine}StorageMethodType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="metadata" type="{http://xml.vidispine.com/schema/vidispine}SimpleMetadataType" minOccurs="0"/>
         <element name="lowWatermark" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
         <element name="highWatermark" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
         <element name="lowWatermarkPercentage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
         <element name="highWatermarkPercentage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
         <element name="autoDetect" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
         <element name="bean" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="showImportables" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
         <element name="projection" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="scanInterval" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
         <element name="archiveScript" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="sequence" type="{http://xml.vidispine.com/schema/vidispine}StorageFileSequenceType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="sequenceTimeout" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
         <element name="resourceTag" type="{http://xml.vidispine.com/schema/vidispine}ResourceTagType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

  • Constructor Details

    • StorageType

      public StorageType()
  • Method Details

    • getId

      public String getId()
      Gets the value of the id property.
      Returns:
      possible object is String
    • setId

      public void setId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
    • isSetId

      public boolean isSetId()
    • getState

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

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

      public boolean isSetState()
    • getPriority

      public String getPriority()
      Gets the value of the priority property.
      Returns:
      possible object is String
    • setPriority

      public void setPriority(String value)
      Sets the value of the priority property.
      Parameters:
      value - allowed object is String
    • isSetPriority

      public boolean isSetPriority()
    • getType

      public String getType()
      Gets the value of the type property.
      Returns:
      possible object is String
    • setType

      public void setType(String value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is String
    • isSetType

      public boolean isSetType()
    • getCapacity

      public Long getCapacity()
      Gets the value of the capacity property.
      Returns:
      possible object is Long
    • setCapacity

      public void setCapacity(Long value)
      Sets the value of the capacity property.
      Parameters:
      value - allowed object is Long
    • isSetCapacity

      public boolean isSetCapacity()
    • getFreeCapacity

      public Long getFreeCapacity()
      Gets the value of the freeCapacity property.
      Returns:
      possible object is Long
    • setFreeCapacity

      public void setFreeCapacity(Long value)
      Sets the value of the freeCapacity property.
      Parameters:
      value - allowed object is Long
    • isSetFreeCapacity

      public boolean isSetFreeCapacity()
    • getBandwidth

      public Long getBandwidth()
      Gets the value of the bandwidth property.
      Returns:
      possible object is Long
    • setBandwidth

      public void setBandwidth(Long value)
      Sets the value of the bandwidth property.
      Parameters:
      value - allowed object is Long
    • isSetBandwidth

      public boolean isSetBandwidth()
    • getTimestamp

      public XMLGregorianCalendar getTimestamp()
      Gets the value of the timestamp property.
      Returns:
      possible object is XMLGregorianCalendar
    • setTimestamp

      public void setTimestamp(XMLGregorianCalendar value)
      Sets the value of the timestamp property.
      Parameters:
      value - allowed object is XMLGregorianCalendar
    • isSetTimestamp

      public boolean isSetTimestamp()
    • getMethod

      public List<StorageMethodType> getMethod()
      Gets the value of the method 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 method property.

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

       getMethod().add(newItem);
       

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

      Returns:
      The value of the method property.
    • isSetMethod

      public boolean isSetMethod()
    • unsetMethod

      public void unsetMethod()
    • getMetadata

      public SimpleMetadataType getMetadata()
      Gets the value of the metadata property.
      Returns:
      possible object is SimpleMetadataType
    • setMetadata

      public void setMetadata(SimpleMetadataType value)
      Sets the value of the metadata property.
      Parameters:
      value - allowed object is SimpleMetadataType
    • isSetMetadata

      public boolean isSetMetadata()
    • getLowWatermark

      public Long getLowWatermark()
      Gets the value of the lowWatermark property.
      Returns:
      possible object is Long
    • setLowWatermark

      public void setLowWatermark(Long value)
      Sets the value of the lowWatermark property.
      Parameters:
      value - allowed object is Long
    • isSetLowWatermark

      public boolean isSetLowWatermark()
    • getHighWatermark

      public Long getHighWatermark()
      Gets the value of the highWatermark property.
      Returns:
      possible object is Long
    • setHighWatermark

      public void setHighWatermark(Long value)
      Sets the value of the highWatermark property.
      Parameters:
      value - allowed object is Long
    • isSetHighWatermark

      public boolean isSetHighWatermark()
    • getLowWatermarkPercentage

      public Integer getLowWatermarkPercentage()
      Gets the value of the lowWatermarkPercentage property.
      Returns:
      possible object is Integer
    • setLowWatermarkPercentage

      public void setLowWatermarkPercentage(Integer value)
      Sets the value of the lowWatermarkPercentage property.
      Parameters:
      value - allowed object is Integer
    • isSetLowWatermarkPercentage

      public boolean isSetLowWatermarkPercentage()
    • getHighWatermarkPercentage

      public Integer getHighWatermarkPercentage()
      Gets the value of the highWatermarkPercentage property.
      Returns:
      possible object is Integer
    • setHighWatermarkPercentage

      public void setHighWatermarkPercentage(Integer value)
      Sets the value of the highWatermarkPercentage property.
      Parameters:
      value - allowed object is Integer
    • isSetHighWatermarkPercentage

      public boolean isSetHighWatermarkPercentage()
    • isAutoDetect

      public Boolean isAutoDetect()
      Gets the value of the autoDetect property.
      Returns:
      possible object is Boolean
    • setAutoDetect

      public void setAutoDetect(Boolean value)
      Sets the value of the autoDetect property.
      Parameters:
      value - allowed object is Boolean
    • isSetAutoDetect

      public boolean isSetAutoDetect()
    • getBean

      public String getBean()
      Gets the value of the bean property.
      Returns:
      possible object is String
    • setBean

      public void setBean(String value)
      Sets the value of the bean property.
      Parameters:
      value - allowed object is String
    • isSetBean

      public boolean isSetBean()
    • isShowImportables

      public Boolean isShowImportables()
      Gets the value of the showImportables property.
      Returns:
      possible object is Boolean
    • setShowImportables

      public void setShowImportables(Boolean value)
      Sets the value of the showImportables property.
      Parameters:
      value - allowed object is Boolean
    • isSetShowImportables

      public boolean isSetShowImportables()
    • getProjection

      public String getProjection()
      Gets the value of the projection property.
      Returns:
      possible object is String
    • setProjection

      public void setProjection(String value)
      Sets the value of the projection property.
      Parameters:
      value - allowed object is String
    • isSetProjection

      public boolean isSetProjection()
    • getScanInterval

      public Integer getScanInterval()
      Gets the value of the scanInterval property.
      Returns:
      possible object is Integer
    • setScanInterval

      public void setScanInterval(Integer value)
      Sets the value of the scanInterval property.
      Parameters:
      value - allowed object is Integer
    • isSetScanInterval

      public boolean isSetScanInterval()
    • getArchiveScript

      public String getArchiveScript()
      Gets the value of the archiveScript property.
      Returns:
      possible object is String
    • setArchiveScript

      public void setArchiveScript(String value)
      Sets the value of the archiveScript property.
      Parameters:
      value - allowed object is String
    • isSetArchiveScript

      public boolean isSetArchiveScript()
    • getSequence

      public List<StorageFileSequenceType> getSequence()
      Gets the value of the sequence 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 sequence property.

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

       getSequence().add(newItem);
       

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

      Returns:
      The value of the sequence property.
    • isSetSequence

      public boolean isSetSequence()
    • unsetSequence

      public void unsetSequence()
    • getSequenceTimeout

      public Integer getSequenceTimeout()
      Gets the value of the sequenceTimeout property.
      Returns:
      possible object is Integer
    • setSequenceTimeout

      public void setSequenceTimeout(Integer value)
      Sets the value of the sequenceTimeout property.
      Parameters:
      value - allowed object is Integer
    • isSetSequenceTimeout

      public boolean isSetSequenceTimeout()
    • getResourceTag

      public List<ResourceTagType> getResourceTag()
      Gets the value of the resourceTag 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 resourceTag property.

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

       getResourceTag().add(newItem);
       

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

      Returns:
      The value of the resourceTag property.
    • isSetResourceTag

      public boolean isSetResourceTag()
    • unsetResourceTag

      public void unsetResourceTag()
    • clone

      public Object clone()
      Overrides:
      clone in class Object
    • copyTo

      public Object copyTo(Object target)
      Specified by:
      copyTo in interface org.jvnet.jaxb.lang.CopyTo
    • copyTo

      public Object copyTo(org.jvnet.jaxb.locator.ObjectLocator locator, Object target, org.jvnet.jaxb.lang.CopyStrategy strategy)
      Specified by:
      copyTo in interface org.jvnet.jaxb.lang.CopyTo
    • createNewInstance

      public Object createNewInstance()
      Specified by:
      createNewInstance in interface org.jvnet.jaxb.lang.CopyTo
    • withId

      public StorageType withId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
      Returns:
      The class instance
    • withState

      public StorageType withState(String value)
      Sets the value of the state property.
      Parameters:
      value - allowed object is String
      Returns:
      The class instance
    • withPriority

      public StorageType withPriority(String value)
      Sets the value of the priority property.
      Parameters:
      value - allowed object is String
      Returns:
      The class instance
    • withType

      public StorageType withType(String value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is String
      Returns:
      The class instance
    • withCapacity

      public StorageType withCapacity(Long value)
      Sets the value of the capacity property.
      Parameters:
      value - allowed object is Long
      Returns:
      The class instance
    • withFreeCapacity

      public StorageType withFreeCapacity(Long value)
      Sets the value of the freeCapacity property.
      Parameters:
      value - allowed object is Long
      Returns:
      The class instance
    • withBandwidth

      public StorageType withBandwidth(Long value)
      Sets the value of the bandwidth property.
      Parameters:
      value - allowed object is Long
      Returns:
      The class instance
    • withTimestamp

      public StorageType withTimestamp(XMLGregorianCalendar value)
      Sets the value of the timestamp property.
      Parameters:
      value - allowed object is XMLGregorianCalendar
      Returns:
      The class instance
    • withMethod

      public StorageType withMethod(StorageMethodType... values)
      Adds objects to the list of Method using add method
      Parameters:
      values - objects to add to the list Method
      Returns:
      The class instance
    • withMethod

      public StorageType withMethod(Collection<StorageMethodType> values)
      Adds objects to the list of Method using addAll method
      Parameters:
      values - objects to add to the list Method
      Returns:
      The class instance
    • withMetadata

      public StorageType withMetadata(SimpleMetadataType value)
      Sets the value of the metadata property.
      Parameters:
      value - allowed object is SimpleMetadataType
      Returns:
      The class instance
    • withLowWatermark

      public StorageType withLowWatermark(Long value)
      Sets the value of the lowWatermark property.
      Parameters:
      value - allowed object is Long
      Returns:
      The class instance
    • withHighWatermark

      public StorageType withHighWatermark(Long value)
      Sets the value of the highWatermark property.
      Parameters:
      value - allowed object is Long
      Returns:
      The class instance
    • withLowWatermarkPercentage

      public StorageType withLowWatermarkPercentage(Integer value)
      Sets the value of the lowWatermarkPercentage property.
      Parameters:
      value - allowed object is Integer
      Returns:
      The class instance
    • withHighWatermarkPercentage

      public StorageType withHighWatermarkPercentage(Integer value)
      Sets the value of the highWatermarkPercentage property.
      Parameters:
      value - allowed object is Integer
      Returns:
      The class instance
    • withAutoDetect

      public StorageType withAutoDetect(Boolean value)
      Sets the value of the autoDetect property.
      Parameters:
      value - allowed object is Boolean
      Returns:
      The class instance
    • withBean

      public StorageType withBean(String value)
      Sets the value of the bean property.
      Parameters:
      value - allowed object is String
      Returns:
      The class instance
    • withShowImportables

      public StorageType withShowImportables(Boolean value)
      Sets the value of the showImportables property.
      Parameters:
      value - allowed object is Boolean
      Returns:
      The class instance
    • withProjection

      public StorageType withProjection(String value)
      Sets the value of the projection property.
      Parameters:
      value - allowed object is String
      Returns:
      The class instance
    • withScanInterval

      public StorageType withScanInterval(Integer value)
      Sets the value of the scanInterval property.
      Parameters:
      value - allowed object is Integer
      Returns:
      The class instance
    • withArchiveScript

      public StorageType withArchiveScript(String value)
      Sets the value of the archiveScript property.
      Parameters:
      value - allowed object is String
      Returns:
      The class instance
    • withSequence

      public StorageType withSequence(StorageFileSequenceType... values)
      Adds objects to the list of Sequence using add method
      Parameters:
      values - objects to add to the list Sequence
      Returns:
      The class instance
    • withSequence

      public StorageType withSequence(Collection<StorageFileSequenceType> values)
      Adds objects to the list of Sequence using addAll method
      Parameters:
      values - objects to add to the list Sequence
      Returns:
      The class instance
    • withSequenceTimeout

      public StorageType withSequenceTimeout(Integer value)
      Sets the value of the sequenceTimeout property.
      Parameters:
      value - allowed object is Integer
      Returns:
      The class instance
    • withResourceTag

      public StorageType withResourceTag(ResourceTagType... values)
      Adds objects to the list of ResourceTag using add method
      Parameters:
      values - objects to add to the list ResourceTag
      Returns:
      The class instance
    • withResourceTag

      public StorageType withResourceTag(Collection<ResourceTagType> values)
      Adds objects to the list of ResourceTag using addAll method
      Parameters:
      values - objects to add to the list ResourceTag
      Returns:
      The class instance
    • equals

      public boolean equals(org.jvnet.jaxb.locator.ObjectLocator thisLocator, org.jvnet.jaxb.locator.ObjectLocator thatLocator, Object object, org.jvnet.jaxb.lang.EqualsStrategy strategy)
      Specified by:
      equals in interface org.jvnet.jaxb.lang.Equals
    • equals

      public boolean equals(Object object)
      Overrides:
      equals in class Object
    • visit

      public StorageType visit(com.kscs.util.jaxb.PropertyVisitor _visitor_)
    • hashCode

      public int hashCode(org.jvnet.jaxb.locator.ObjectLocator locator, org.jvnet.jaxb.lang.HashCodeStrategy strategy)
      Specified by:
      hashCode in interface org.jvnet.jaxb.lang.HashCode
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • append

      public StringBuilder append(org.jvnet.jaxb.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb.lang.ToStringStrategy strategy)
      Specified by:
      append in interface org.jvnet.jaxb.lang.ToString
    • appendFields

      public StringBuilder appendFields(org.jvnet.jaxb.locator.ObjectLocator locator, StringBuilder buffer, org.jvnet.jaxb.lang.ToStringStrategy strategy)
      Specified by:
      appendFields in interface org.jvnet.jaxb.lang.ToString