public class ExportRequestType extends Object implements Serializable, Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo, org.jvnet.jaxb2_commons.lang.Equals
Java class for ExportRequestType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ExportRequestType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="tag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="format" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="storage" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="id" type="{http://xml.vidispine.com/schema/vidispine}SiteIdType"/> <element name="path" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> <element name="item" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="id" type="{http://xml.vidispine.com/schema/vidispine}SiteIdType"/> <element name="path" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> </sequence> </restriction> </complexContent> </complexType> </element> <element name="sequence" type="{http://xml.vidispine.com/schema/vidispine}SequenceType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Class and Description |
---|---|
static class |
ExportRequestType.Item
Java class for anonymous complex type.
|
static class |
ExportRequestType.PropInfo |
static class |
ExportRequestType.Storage
Java class for anonymous complex type.
|
Modifier and Type | Field and Description |
---|---|
protected List<String> |
content |
protected String |
format |
protected List<ExportRequestType.Item> |
item |
protected SequenceType |
sequence |
protected List<ExportRequestType.Storage> |
storage |
protected String |
tag |
Constructor and Description |
---|
ExportRequestType() |
Modifier and Type | Method and Description |
---|---|
Object |
clone() |
Object |
copyTo(Object target) |
Object |
copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator,
Object target,
org.jvnet.jaxb2_commons.lang.CopyStrategy strategy) |
Object |
createNewInstance() |
boolean |
equals(Object object) |
boolean |
equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator,
org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator,
Object object,
org.jvnet.jaxb2_commons.lang.EqualsStrategy strategy) |
List<String> |
getContent()
Gets the value of the content property.
|
String |
getFormat()
Gets the value of the format property.
|
List<ExportRequestType.Item> |
getItem()
Gets the value of the item property.
|
SequenceType |
getSequence()
Gets the value of the sequence property.
|
List<ExportRequestType.Storage> |
getStorage()
Gets the value of the storage property.
|
String |
getTag()
Gets the value of the tag property.
|
boolean |
isSetContent() |
boolean |
isSetFormat() |
boolean |
isSetItem() |
boolean |
isSetSequence() |
boolean |
isSetStorage() |
boolean |
isSetTag() |
void |
setFormat(String value)
Sets the value of the format property.
|
void |
setSequence(SequenceType value)
Sets the value of the sequence property.
|
void |
setTag(String value)
Sets the value of the tag property.
|
void |
unsetContent() |
void |
unsetItem() |
void |
unsetStorage() |
ExportRequestType |
visit(com.kscs.util.jaxb.PropertyVisitor _visitor_) |
ExportRequestType |
withContent(Collection<String> values) |
ExportRequestType |
withContent(String... values) |
ExportRequestType |
withFormat(String value) |
ExportRequestType |
withItem(Collection<ExportRequestType.Item> values) |
ExportRequestType |
withItem(ExportRequestType.Item... values) |
ExportRequestType |
withSequence(SequenceType value) |
ExportRequestType |
withStorage(Collection<ExportRequestType.Storage> values) |
ExportRequestType |
withStorage(ExportRequestType.Storage... values) |
ExportRequestType |
withTag(String value) |
protected String tag
protected String format
protected List<ExportRequestType.Storage> storage
protected List<ExportRequestType.Item> item
protected SequenceType sequence
public String getTag()
String
public void setTag(String value)
value
- allowed object is
String
public boolean isSetTag()
public String getFormat()
String
public void setFormat(String value)
value
- allowed object is
String
public boolean isSetFormat()
public List<String> getContent()
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 content property.
For example, to add a new item, do as follows:
getContent().add(newItem);
Objects of the following type(s) are allowed in the list
String
public boolean isSetContent()
public void unsetContent()
public List<ExportRequestType.Storage> getStorage()
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 storage property.
For example, to add a new item, do as follows:
getStorage().add(newItem);
Objects of the following type(s) are allowed in the list
ExportRequestType.Storage
public boolean isSetStorage()
public void unsetStorage()
public List<ExportRequestType.Item> getItem()
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 item property.
For example, to add a new item, do as follows:
getItem().add(newItem);
Objects of the following type(s) are allowed in the list
ExportRequestType.Item
public boolean isSetItem()
public void unsetItem()
public SequenceType getSequence()
SequenceType
public void setSequence(SequenceType value)
value
- allowed object is
SequenceType
public boolean isSetSequence()
public Object copyTo(Object target)
copyTo
in interface org.jvnet.jaxb2_commons.lang.CopyTo
public Object copyTo(org.jvnet.jaxb2_commons.locator.ObjectLocator locator, Object target, org.jvnet.jaxb2_commons.lang.CopyStrategy strategy)
copyTo
in interface org.jvnet.jaxb2_commons.lang.CopyTo
public Object createNewInstance()
createNewInstance
in interface org.jvnet.jaxb2_commons.lang.CopyTo
public ExportRequestType withTag(String value)
public ExportRequestType withFormat(String value)
public ExportRequestType withContent(String... values)
public ExportRequestType withContent(Collection<String> values)
public ExportRequestType withStorage(ExportRequestType.Storage... values)
public ExportRequestType withStorage(Collection<ExportRequestType.Storage> values)
public ExportRequestType withItem(ExportRequestType.Item... values)
public ExportRequestType withItem(Collection<ExportRequestType.Item> values)
public ExportRequestType withSequence(SequenceType value)
public boolean equals(org.jvnet.jaxb2_commons.locator.ObjectLocator thisLocator, org.jvnet.jaxb2_commons.locator.ObjectLocator thatLocator, Object object, org.jvnet.jaxb2_commons.lang.EqualsStrategy strategy)
equals
in interface org.jvnet.jaxb2_commons.lang.Equals
public ExportRequestType visit(com.kscs.util.jaxb.PropertyVisitor _visitor_)
Copyright © 2018. All rights reserved.