Class FXSConfig
- java.lang.Object
-
- de.consist.bmu.rule.config.schema.fxs.FXSConfig
-
public class FXSConfig extends java.lang.Object
Java-Klasse für anonymous complex type.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Version" type="{}BMU_VERSION_TYPE"/> <element name="Id" type="{http://www.w3.org/2001/XMLSchema}ID"/> <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="FXSSchema" type="{}FXS_SCHEMA_TYPE" maxOccurs="unbounded"/> <element name="FXS" type="{}FXS_TYPE" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description FXSConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<FXSTYPE>
getFXS()
Gets the value of the fxs property.java.util.List<FXSSCHEMATYPE>
getFXSSchema()
Gets the value of the fxsSchema property.java.lang.String
getId()
Ruft den Wert der id-Eigenschaft ab.java.lang.String
getName()
Ruft den Wert der name-Eigenschaft ab.java.lang.String
getVersion()
Ruft den Wert der version-Eigenschaft ab.void
setId(java.lang.String value)
Legt den Wert der id-Eigenschaft fest.void
setName(java.lang.String value)
Legt den Wert der name-Eigenschaft fest.void
setVersion(java.lang.String value)
Legt den Wert der version-Eigenschaft fest.
-
-
-
Field Detail
-
version
protected java.lang.String version
-
id
protected java.lang.String id
-
name
protected java.lang.String name
-
fxsSchema
protected java.util.List<FXSSCHEMATYPE> fxsSchema
-
fxs
protected java.util.List<FXSTYPE> fxs
-
-
Method Detail
-
getVersion
public java.lang.String getVersion()
Ruft den Wert der version-Eigenschaft ab.- Returns:
- possible object is
String
-
setVersion
public void setVersion(java.lang.String value)
Legt den Wert der version-Eigenschaft fest.- Parameters:
value
- allowed object isString
-
getId
public java.lang.String getId()
Ruft den Wert der id-Eigenschaft ab.- Returns:
- possible object is
String
-
setId
public void setId(java.lang.String value)
Legt den Wert der id-Eigenschaft fest.- Parameters:
value
- allowed object isString
-
getName
public java.lang.String getName()
Ruft den Wert der name-Eigenschaft ab.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Legt den Wert der name-Eigenschaft fest.- Parameters:
value
- allowed object isString
-
getFXSSchema
public java.util.List<FXSSCHEMATYPE> getFXSSchema()
Gets the value of the fxsSchema 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 JAXB object. This is why there is not a
set
method for the fxsSchema property.For example, to add a new item, do as follows:
getFXSSchema().add(newItem);
Objects of the following type(s) are allowed in the list
FXSSCHEMATYPE
-
getFXS
public java.util.List<FXSTYPE> getFXS()
Gets the value of the fxs 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 JAXB object. This is why there is not a
set
method for the fxs property.For example, to add a new item, do as follows:
getFXS().add(newItem);
Objects of the following type(s) are allowed in the list
FXSTYPE
-
-