Class DefaultProperty
- java.lang.Object
-
- de.hybris.platform.cockpit.services.config.jaxb.base.DefaultProperty
-
public class DefaultProperty extends java.lang.ObjectJava class for default-property complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="default-property"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="parameter" type="{}parameter" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="qualifier" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="defaultEditor" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="baseProperty" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.BooleanbasePropertyprotected java.lang.StringdefaultEditorprotected java.util.List<Parameter>parameterprotected java.lang.Stringqualifier
-
Constructor Summary
Constructors Constructor Description DefaultProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDefaultEditor()Gets the value of the defaultEditor property.java.util.List<Parameter>getParameter()Gets the value of the parameter property.java.lang.StringgetQualifier()Gets the value of the qualifier property.booleanisBaseProperty()Gets the value of the baseProperty property.voidsetBaseProperty(java.lang.Boolean value)Sets the value of the baseProperty property.voidsetDefaultEditor(java.lang.String value)Sets the value of the defaultEditor property.voidsetQualifier(java.lang.String value)Sets the value of the qualifier property.
-
-
-
Field Detail
-
parameter
protected java.util.List<Parameter> parameter
-
qualifier
protected java.lang.String qualifier
-
defaultEditor
protected java.lang.String defaultEditor
-
baseProperty
protected java.lang.Boolean baseProperty
-
-
Method Detail
-
getParameter
public java.util.List<Parameter> 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
Parameter
-
getQualifier
public java.lang.String getQualifier()
Gets the value of the qualifier property.- Returns:
- possible object is
String
-
setQualifier
public void setQualifier(java.lang.String value)
Sets the value of the qualifier property.- Parameters:
value- allowed object isString
-
getDefaultEditor
public java.lang.String getDefaultEditor()
Gets the value of the defaultEditor property.- Returns:
- possible object is
String
-
setDefaultEditor
public void setDefaultEditor(java.lang.String value)
Sets the value of the defaultEditor property.- Parameters:
value- allowed object isString
-
isBaseProperty
public boolean isBaseProperty()
Gets the value of the baseProperty property.- Returns:
- possible object is
Boolean
-
setBaseProperty
public void setBaseProperty(java.lang.Boolean value)
Sets the value of the baseProperty property.- Parameters:
value- allowed object isBoolean
-
-