public class TaskGroupType extends Object implements Serializable, Cloneable, org.jvnet.jaxb2_commons.lang.CopyTo, org.jvnet.jaxb2_commons.lang.Equals
Java class for TaskGroupType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TaskGroupType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="loc" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="job" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="priority" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="user" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="group" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="data" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType> </element> <element name="transcoder" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/> </sequence> </restriction> </complexContent> </complexType> </element> <element name="metadata" type="{http://xml.vidispine.com/schema/vidispine}SimpleMetadataType" minOccurs="0"/> <element name="priority" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Class and Description |
---|---|
static class |
TaskGroupType.Job
Java class for anonymous complex type.
|
static class |
TaskGroupType.PropInfo |
static class |
TaskGroupType.Transcoder
Java class for anonymous complex type.
|
Modifier and Type | Field and Description |
---|---|
protected List<TaskGroupType.Job> |
job |
protected String |
loc |
protected SimpleMetadataType |
metadata |
protected String |
name |
protected String |
priority |
protected List<TaskGroupType.Transcoder> |
transcoder |
Constructor and Description |
---|
TaskGroupType() |
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<TaskGroupType.Job> |
getJob()
Gets the value of the job property.
|
String |
getLoc()
Gets the value of the loc property.
|
SimpleMetadataType |
getMetadata()
Gets the value of the metadata property.
|
String |
getName()
Gets the value of the name property.
|
String |
getPriority()
Gets the value of the priority property.
|
List<TaskGroupType.Transcoder> |
getTranscoder()
Gets the value of the transcoder property.
|
boolean |
isSetJob() |
boolean |
isSetLoc() |
boolean |
isSetMetadata() |
boolean |
isSetName() |
boolean |
isSetPriority() |
boolean |
isSetTranscoder() |
void |
setLoc(String value)
Sets the value of the loc property.
|
void |
setMetadata(SimpleMetadataType value)
Sets the value of the metadata property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setPriority(String value)
Sets the value of the priority property.
|
void |
unsetJob() |
void |
unsetTranscoder() |
TaskGroupType |
visit(com.kscs.util.jaxb.PropertyVisitor _visitor_) |
TaskGroupType |
withJob(Collection<TaskGroupType.Job> values) |
TaskGroupType |
withJob(TaskGroupType.Job... values) |
TaskGroupType |
withLoc(String value) |
TaskGroupType |
withMetadata(SimpleMetadataType value) |
TaskGroupType |
withName(String value) |
TaskGroupType |
withPriority(String value) |
TaskGroupType |
withTranscoder(Collection<TaskGroupType.Transcoder> values) |
TaskGroupType |
withTranscoder(TaskGroupType.Transcoder... values) |
protected String loc
protected String name
protected List<TaskGroupType.Job> job
protected List<TaskGroupType.Transcoder> transcoder
protected SimpleMetadataType metadata
protected String priority
public String getLoc()
String
public void setLoc(String value)
value
- allowed object is
String
public boolean isSetLoc()
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public boolean isSetName()
public List<TaskGroupType.Job> getJob()
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 job property.
For example, to add a new item, do as follows:
getJob().add(newItem);
Objects of the following type(s) are allowed in the list
TaskGroupType.Job
public boolean isSetJob()
public void unsetJob()
public List<TaskGroupType.Transcoder> getTranscoder()
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 transcoder property.
For example, to add a new item, do as follows:
getTranscoder().add(newItem);
Objects of the following type(s) are allowed in the list
TaskGroupType.Transcoder
public boolean isSetTranscoder()
public void unsetTranscoder()
public SimpleMetadataType getMetadata()
SimpleMetadataType
public void setMetadata(SimpleMetadataType value)
value
- allowed object is
SimpleMetadataType
public boolean isSetMetadata()
public String getPriority()
String
public void setPriority(String value)
value
- allowed object is
String
public boolean isSetPriority()
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 TaskGroupType withLoc(String value)
public TaskGroupType withName(String value)
public TaskGroupType withJob(TaskGroupType.Job... values)
public TaskGroupType withJob(Collection<TaskGroupType.Job> values)
public TaskGroupType withTranscoder(TaskGroupType.Transcoder... values)
public TaskGroupType withTranscoder(Collection<TaskGroupType.Transcoder> values)
public TaskGroupType withMetadata(SimpleMetadataType value)
public TaskGroupType withPriority(String 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 TaskGroupType visit(com.kscs.util.jaxb.PropertyVisitor _visitor_)
Copyright © 2018. All rights reserved.