60 lines
1.4 KiB
Java
Executable file
60 lines
1.4 KiB
Java
Executable file
|
|
package fr.insa.soap.wsdltojava;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlType;
|
|
|
|
|
|
/**
|
|
* <p>Classe Java pour compare complex type.
|
|
*
|
|
* <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
|
|
*
|
|
* <pre>
|
|
* &lt;complexType name="compare"&gt;
|
|
* &lt;complexContent&gt;
|
|
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
|
|
* &lt;sequence&gt;
|
|
* &lt;element name="chain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
|
|
* &lt;/sequence&gt;
|
|
* &lt;/restriction&gt;
|
|
* &lt;/complexContent&gt;
|
|
* &lt;/complexType&gt;
|
|
* </pre>
|
|
*
|
|
*
|
|
*/
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
@XmlType(name = "compare", propOrder = {
|
|
"chain"
|
|
})
|
|
public class Compare {
|
|
|
|
protected String chain;
|
|
|
|
/**
|
|
* Obtient la valeur de la propriété chain.
|
|
*
|
|
* @return
|
|
* possible object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public String getChain() {
|
|
return chain;
|
|
}
|
|
|
|
/**
|
|
* Définit la valeur de la propriété chain.
|
|
*
|
|
* @param value
|
|
* allowed object is
|
|
* {@link String }
|
|
*
|
|
*/
|
|
public void setChain(String value) {
|
|
this.chain = value;
|
|
}
|
|
|
|
}
|