com.glookast.api.capture_info.RequestSetCaptureJobMetadata Maven / Gradle / Ivy
package com.glookast.api.capture_info;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.glookast.commons.base.PropertyList;
/**
* Java class for RequestSetCaptureJobMetadata complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RequestSetCaptureJobMetadata">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="captureJobId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="metadataList" type="{http://base.commons.glookast.com}PropertyList"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequestSetCaptureJobMetadata", propOrder = {
"captureJobId",
"metadataList"
})
public class RequestSetCaptureJobMetadata implements Serializable
{
@XmlElement(required = true)
protected String captureJobId;
@XmlElement(required = true)
protected PropertyList metadataList;
/**
* Default no-arg constructor
*
*/
public RequestSetCaptureJobMetadata() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public RequestSetCaptureJobMetadata(final String captureJobId, final PropertyList metadataList) {
this.captureJobId = captureJobId;
this.metadataList = metadataList;
}
/**
* Gets the value of the captureJobId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCaptureJobId() {
return captureJobId;
}
/**
* Sets the value of the captureJobId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCaptureJobId(String value) {
this.captureJobId = value;
}
/**
* Gets the value of the metadataList property.
*
* @return
* possible object is
* {@link PropertyList }
*
*/
public PropertyList getMetadataList() {
return metadataList;
}
/**
* Sets the value of the metadataList property.
*
* @param value
* allowed object is
* {@link PropertyList }
*
*/
public void setMetadataList(PropertyList value) {
this.metadataList = value;
}
}