
net.datastream.schemas.mp_fields.DSString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eam-wshub-proxyclient Show documentation
Show all versions of eam-wshub-proxyclient Show documentation
JAX-WS aisws aisws generated from Infor EAM Web Services Toolkit WSDLs.
package net.datastream.schemas.mp_fields;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
/**
* Classe Java pour DSString complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType name="DSString">
* <simpleContent>
* <extension base="<http://www.w3.org/2001/XMLSchema>string">
* <attribute name="null" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DSString", propOrder = {
"value"
})
public class DSString {
@XmlValue
protected String value;
@XmlAttribute(name = "null")
protected Boolean _null;
/**
* Obtient la valeur de la propriété value.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Définit la valeur de la propriété value.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Obtient la valeur de la propriété null.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isNull() {
if (_null == null) {
return false;
} else {
return _null;
}
}
/**
* Définit la valeur de la propriété null.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setNull(Boolean value) {
this._null = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy