com.glookast.api.capture.info.RequestCaptureJobId 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;
/**
* Java class for RequestCaptureJobId complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RequestCaptureJobId">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="captureJobId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequestCaptureJobId", propOrder = {
"captureJobId"
})
public class RequestCaptureJobId implements Serializable
{
@XmlElement(required = true)
protected String captureJobId;
/**
* Default no-arg constructor
*
*/
public RequestCaptureJobId() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public RequestCaptureJobId(final String captureJobId) {
this.captureJobId = captureJobId;
}
/**
* 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;
}
}