com.glookast.api.templates.RequestOnlyLicensed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-templates Show documentation
Show all versions of api-templates Show documentation
Generated artifacts used for interfacing with Glookast Products
package com.glookast.api.templates;
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 RequestOnlyLicensed complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RequestOnlyLicensed">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="onlyLicensed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RequestOnlyLicensed", propOrder = {
"onlyLicensed"
})
public class RequestOnlyLicensed implements Serializable
{
protected boolean onlyLicensed;
/**
* Default no-arg constructor
*
*/
public RequestOnlyLicensed() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public RequestOnlyLicensed(final boolean onlyLicensed) {
this.onlyLicensed = onlyLicensed;
}
/**
* Gets the value of the onlyLicensed property.
*
*/
public boolean isOnlyLicensed() {
return onlyLicensed;
}
/**
* Sets the value of the onlyLicensed property.
*
*/
public void setOnlyLicensed(boolean value) {
this.onlyLicensed = value;
}
}