
com.daehosting.webservices.isbn.IsValidISBN13Response Maven / Gradle / Ivy
The newest version!
package com.daehosting.webservices.isbn;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="IsValidISBN13Result" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"isValidISBN13Result"
})
@XmlRootElement(name = "IsValidISBN13Response")
public class IsValidISBN13Response {
@XmlElement(name = "IsValidISBN13Result")
protected boolean isValidISBN13Result;
/**
* Gets the value of the isValidISBN13Result property.
*
*/
public boolean isIsValidISBN13Result() {
return isValidISBN13Result;
}
/**
* Sets the value of the isValidISBN13Result property.
*
*/
public void setIsValidISBN13Result(boolean value) {
this.isValidISBN13Result = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy