SOA/AnalyseClient/target/generated-sources/cxf/fr/insa/soap/wsdltojava/Compare.java
2024-11-13 18:06:52 +01:00

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>
* <complexType name="compare">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="chain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </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;
}
}