Class XmlConfigDescription
- All Implemented Interfaces:
Serializable
Java class for configDescription complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="configDescription">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="parameter-group" type="{https://openhab.org/schemas/config-description/v1.0.0}parameterGroup" maxOccurs="unbounded" minOccurs="0"/>
<element name="parameter" type="{https://openhab.org/schemas/config-description/v1.0.0}parameter" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="uri" type="{https://openhab.org/schemas/config-description/v1.0.0}uriRestrictionPattern" />
</restriction>
</complexContent>
</complexType>
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<XmlParameter> protected List<XmlParameterGroup> protected String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the parameter property.Gets the value of the parameterGroup property.getUri()Gets the value of the uri property.voidSets the value of the uri property.
-
Field Details
-
parameterGroup
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2026-03-15T04:01:35Z") protected List<XmlParameterGroup> parameterGroup -
parameter
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2026-03-15T04:01:35Z") protected List<XmlParameter> parameter -
uri
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2026-03-15T04:01:35Z") protected String uri
-
-
Constructor Details
-
XmlConfigDescription
public XmlConfigDescription()
-
-
Method Details
-
getParameterGroup
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2026-03-15T04:01:35Z") public List<XmlParameterGroup> getParameterGroup()Gets the value of the parameterGroup 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
setmethod for the parameterGroup property.For example, to add a new item, do as follows:
getParameterGroup().add(newItem);Objects of the following type(s) are allowed in the list
XmlParameterGroup -
getParameter
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2026-03-15T04:01:35Z") public List<XmlParameter> getParameter()Gets the value of the parameter 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
setmethod for the parameter property.For example, to add a new item, do as follows:
getParameter().add(newItem);Objects of the following type(s) are allowed in the list
XmlParameter -
getUri
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2026-03-15T04:01:35Z") public String getUri()Gets the value of the uri property.- Returns:
- possible object is
String
-
setUri
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.7", date="2026-03-15T04:01:35Z") public void setUri(String value) Sets the value of the uri property.- Parameters:
value- allowed object isString
-