net.datastream.schemas.mp_fields.ENTITYATTRIBUTESETID Maven / Gradle / Ivy
package net.datastream.schemas.mp_fields;
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;
/**
* Classe Java pour anonymous complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_fields}RENTITYID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}XREFENTITYCODE"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ATTRIBUTESETDEFID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ATTRIBUTESETNAME" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ATTRIBUTESETDESC" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"rentityid",
"xrefentitycode",
"attributesetdefid",
"attributesetname",
"attributesetdesc"
})
@XmlRootElement(name = "ENTITYATTRIBUTESETID")
public class ENTITYATTRIBUTESETID {
@XmlElement(name = "RENTITYID", required = true)
protected String rentityid;
@XmlElement(name = "XREFENTITYCODE", required = true)
protected String xrefentitycode;
@XmlElement(name = "ATTRIBUTESETDEFID", required = true)
protected ATTRIBUTESETDEFID attributesetdefid;
@XmlElement(name = "ATTRIBUTESETNAME")
protected String attributesetname;
@XmlElement(name = "ATTRIBUTESETDESC")
protected String attributesetdesc;
/**
* Obtient la valeur de la propriété rentityid.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRENTITYID() {
return rentityid;
}
/**
* Définit la valeur de la propriété rentityid.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRENTITYID(String value) {
this.rentityid = value;
}
/**
* Obtient la valeur de la propriété xrefentitycode.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXREFENTITYCODE() {
return xrefentitycode;
}
/**
* Définit la valeur de la propriété xrefentitycode.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXREFENTITYCODE(String value) {
this.xrefentitycode = value;
}
/**
* Obtient la valeur de la propriété attributesetdefid.
*
* @return
* possible object is
* {@link ATTRIBUTESETDEFID }
*
*/
public ATTRIBUTESETDEFID getATTRIBUTESETDEFID() {
return attributesetdefid;
}
/**
* Définit la valeur de la propriété attributesetdefid.
*
* @param value
* allowed object is
* {@link ATTRIBUTESETDEFID }
*
*/
public void setATTRIBUTESETDEFID(ATTRIBUTESETDEFID value) {
this.attributesetdefid = value;
}
/**
* Obtient la valeur de la propriété attributesetname.
*
* @return
* possible object is
* {@link String }
*
*/
public String getATTRIBUTESETNAME() {
return attributesetname;
}
/**
* Définit la valeur de la propriété attributesetname.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setATTRIBUTESETNAME(String value) {
this.attributesetname = value;
}
/**
* Obtient la valeur de la propriété attributesetdesc.
*
* @return
* possible object is
* {@link String }
*
*/
public String getATTRIBUTESETDESC() {
return attributesetdesc;
}
/**
* Définit la valeur de la propriété attributesetdesc.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setATTRIBUTESETDESC(String value) {
this.attributesetdesc = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy