
com.daehosting.webservices.isbn.IsValidISBN10Response 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="IsValidISBN10Result" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"isValidISBN10Result"
})
@XmlRootElement(name = "IsValidISBN10Response")
public class IsValidISBN10Response {
@XmlElement(name = "IsValidISBN10Result")
protected boolean isValidISBN10Result;
/**
* Gets the value of the isValidISBN10Result property.
*
*/
public boolean isIsValidISBN10Result() {
return isValidISBN10Result;
}
/**
* Sets the value of the isValidISBN10Result property.
*
*/
public void setIsValidISBN10Result(boolean value) {
this.isValidISBN10Result = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy