com.glookast.api.capture.playout.CapturePlayoutExceptionDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-capture-playout Show documentation
Show all versions of api-capture-playout Show documentation
Generated artifacts used for interfacing with Glookast Products
package com.glookast.api.capture.playout;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CapturePlayoutExceptionDetails complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CapturePlayoutExceptionDetails">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="detail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CapturePlayoutExceptionDetails", propOrder = {
"errorCode",
"description",
"detail"
})
public class CapturePlayoutExceptionDetails implements Serializable
{
protected int errorCode;
protected String description;
protected String detail;
/**
* Default no-arg constructor
*
*/
public CapturePlayoutExceptionDetails() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public CapturePlayoutExceptionDetails(final int errorCode, final String description, final String detail) {
this.errorCode = errorCode;
this.description = description;
this.detail = detail;
}
/**
* Gets the value of the errorCode property.
*
*/
public int getErrorCode() {
return errorCode;
}
/**
* Sets the value of the errorCode property.
*
*/
public void setErrorCode(int value) {
this.errorCode = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the detail property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDetail() {
return detail;
}
/**
* Sets the value of the detail property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDetail(String value) {
this.detail = value;
}
}