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