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

net.datastream.schemas.mp_fields.ATTRIBUTESETDEFID 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.XmlSchemaType;
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}ATTRIBUTESETDEFCODE"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}ATTRIBUTESETDEFDESC" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}ATTRIBUTESETDEFTYPE" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "attributesetdefcode", "attributesetdefdesc", "attributesetdeftype" }) @XmlRootElement(name = "ATTRIBUTESETDEFID") public class ATTRIBUTESETDEFID { @XmlElement(name = "ATTRIBUTESETDEFCODE", required = true) protected String attributesetdefcode; @XmlElement(name = "ATTRIBUTESETDEFDESC") protected String attributesetdefdesc; @XmlElement(name = "ATTRIBUTESETDEFTYPE") @XmlSchemaType(name = "string") protected ATTRIBUTESETDEFTYPE_Type attributesetdeftype; /** * Obtient la valeur de la propriété attributesetdefcode. * * @return * possible object is * {@link String } * */ public String getATTRIBUTESETDEFCODE() { return attributesetdefcode; } /** * Définit la valeur de la propriété attributesetdefcode. * * @param value * allowed object is * {@link String } * */ public void setATTRIBUTESETDEFCODE(String value) { this.attributesetdefcode = value; } /** * Obtient la valeur de la propriété attributesetdefdesc. * * @return * possible object is * {@link String } * */ public String getATTRIBUTESETDEFDESC() { return attributesetdefdesc; } /** * Définit la valeur de la propriété attributesetdefdesc. * * @param value * allowed object is * {@link String } * */ public void setATTRIBUTESETDEFDESC(String value) { this.attributesetdefdesc = value; } /** * Obtient la valeur de la propriété attributesetdeftype. * * @return * possible object is * {@link ATTRIBUTESETDEFTYPE_Type } * */ public ATTRIBUTESETDEFTYPE_Type getATTRIBUTESETDEFTYPE() { return attributesetdeftype; } /** * Définit la valeur de la propriété attributesetdeftype. * * @param value * allowed object is * {@link ATTRIBUTESETDEFTYPE_Type } * */ public void setATTRIBUTESETDEFTYPE(ATTRIBUTESETDEFTYPE_Type value) { this.attributesetdeftype = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy