All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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;


/**
 * 

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 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; /** * Gets the value of the rentityid property. * * @return * possible object is * {@link String } * */ public String getRENTITYID() { return rentityid; } /** * Sets the value of the rentityid property. * * @param value * allowed object is * {@link String } * */ public void setRENTITYID(String value) { this.rentityid = value; } /** * Gets the value of the xrefentitycode property. * * @return * possible object is * {@link String } * */ public String getXREFENTITYCODE() { return xrefentitycode; } /** * Sets the value of the xrefentitycode property. * * @param value * allowed object is * {@link String } * */ public void setXREFENTITYCODE(String value) { this.xrefentitycode = value; } /** * Gets the value of the attributesetdefid property. * * @return * possible object is * {@link ATTRIBUTESETDEFID } * */ public ATTRIBUTESETDEFID getATTRIBUTESETDEFID() { return attributesetdefid; } /** * Sets the value of the attributesetdefid property. * * @param value * allowed object is * {@link ATTRIBUTESETDEFID } * */ public void setATTRIBUTESETDEFID(ATTRIBUTESETDEFID value) { this.attributesetdefid = value; } /** * Gets the value of the attributesetname property. * * @return * possible object is * {@link String } * */ public String getATTRIBUTESETNAME() { return attributesetname; } /** * Sets the value of the attributesetname property. * * @param value * allowed object is * {@link String } * */ public void setATTRIBUTESETNAME(String value) { this.attributesetname = value; } /** * Gets the value of the attributesetdesc property. * * @return * possible object is * {@link String } * */ public String getATTRIBUTESETDESC() { return attributesetdesc; } /** * Sets the value of the attributesetdesc property. * * @param value * allowed object is * {@link String } * */ public void setATTRIBUTESETDESC(String value) { this.attributesetdesc = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy