schemas.ebx.common_1.UDACatalog Maven / Gradle / Ivy
package schemas.ebx.common_1;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
* Attributes catalog. Catalog for user defined attributes.
*
*
* Classe Java pour UDACatalog complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType name="UDACatalog">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}Name"/>
* <element name="type">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="xs:string"/>
* <enumeration value="xs:boolean"/>
* <enumeration value="xs:int"/>
* <enumeration value="xs:decimal"/>
* <enumeration value="xs:dateTime"/>
* <enumeration value="xs:date"/>
* <enumeration value="xs:time"/>
* <enumeration value="xs:Name"/>
* <enumeration value="xs:anyURI"/>
* <enumeration value="osd:text"/>
* <enumeration value="osd:html"/>
* <enumeration value="osd:email"/>
* <enumeration value="osd:password"/>
* <enumeration value="osd:locale"/>
* <enumeration value="osd:color"/>
* <enumeration value="osd:dataspaceKey"/>
* <enumeration value="osd:datasetName"/>
* </restriction>
* </simpleType>
* </element>
* <element name="documentation">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="localizedDocumentations" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="locale" type="{urn:ebx-schemas:common_1.0}locale"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="description" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="99999"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UDACatalog", propOrder = {
"name",
"type",
"documentation"
})
public class UDACatalog {
@XmlElement(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "Name")
protected String name;
@XmlElement(required = true)
protected String type;
@XmlElement(required = true)
protected UDACatalog.Documentation documentation;
/**
* Obtient la valeur de la propriété name.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Définit la valeur de la propriété name.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Obtient la valeur de la propriété type.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Définit la valeur de la propriété type.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Obtient la valeur de la propriété documentation.
*
* @return
* possible object is
* {@link UDACatalog.Documentation }
*
*/
public UDACatalog.Documentation getDocumentation() {
return documentation;
}
/**
* Définit la valeur de la propriété documentation.
*
* @param value
* allowed object is
* {@link UDACatalog.Documentation }
*
*/
public void setDocumentation(UDACatalog.Documentation value) {
this.documentation = value;
}
/**
*
* Label and description
*
*
* 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 name="localizedDocumentations" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="locale" type="{urn:ebx-schemas:common_1.0}locale"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="description" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="99999"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"localizedDocumentations"
})
public static class Documentation {
protected List localizedDocumentations;
/**
* Gets the value of the localizedDocumentations property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a set
method for the localizedDocumentations property.
*
*
* For example, to add a new item, do as follows:
*
* getLocalizedDocumentations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link UDACatalog.Documentation.LocalizedDocumentations }
*
*
*/
public List getLocalizedDocumentations() {
if (localizedDocumentations == null) {
localizedDocumentations = new ArrayList();
}
return this.localizedDocumentations;
}
/**
* 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 name="locale" type="{urn:ebx-schemas:common_1.0}locale"/>
* <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="description" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="99999"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"locale",
"label",
"description"
})
public static class LocalizedDocumentations {
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected Locale locale;
protected String label;
protected String description;
/**
* Obtient la valeur de la propriété locale.
*
* @return
* possible object is
* {@link Locale }
*
*/
public Locale getLocale() {
return locale;
}
/**
* Définit la valeur de la propriété locale.
*
* @param value
* allowed object is
* {@link Locale }
*
*/
public void setLocale(Locale value) {
this.locale = value;
}
/**
* Obtient la valeur de la propriété label.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Définit la valeur de la propriété label.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Obtient la valeur de la propriété description.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Définit la valeur de la propriété description.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
}
}
}