Class InitialProperties
- java.lang.Object
-
- de.hybris.platform.cockpit.services.config.jaxb.base.InitialProperties
-
public class InitialProperties extends java.lang.ObjectJava class for initial-properties complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="initial-properties"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="property-mapping" type="{}property-mapping" maxOccurs="unbounded"/> </sequence> <attribute name="source-object-template" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<PropertyMapping>propertyMappingprotected java.lang.StringsourceObjectTemplate
-
Constructor Summary
Constructors Constructor Description InitialProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<PropertyMapping>getPropertyMapping()Gets the value of the propertyMapping property.java.lang.StringgetSourceObjectTemplate()Gets the value of the sourceObjectTemplate property.voidsetSourceObjectTemplate(java.lang.String value)Sets the value of the sourceObjectTemplate property.
-
-
-
Field Detail
-
propertyMapping
protected java.util.List<PropertyMapping> propertyMapping
-
sourceObjectTemplate
protected java.lang.String sourceObjectTemplate
-
-
Method Detail
-
getPropertyMapping
public java.util.List<PropertyMapping> getPropertyMapping()
Gets the value of the propertyMapping 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 propertyMapping property.For example, to add a new item, do as follows:
getPropertyMapping().add(newItem);
Objects of the following type(s) are allowed in the list
PropertyMapping
-
getSourceObjectTemplate
public java.lang.String getSourceObjectTemplate()
Gets the value of the sourceObjectTemplate property.- Returns:
- possible object is
String
-
setSourceObjectTemplate
public void setSourceObjectTemplate(java.lang.String value)
Sets the value of the sourceObjectTemplate property.- Parameters:
value- allowed object isString
-
-