Class ComposedHandlerType
- java.lang.Object
-
- com.hybris.cockpitng.config.jaxb.wizard.ComposedHandlerType
-
public class ComposedHandlerType extends java.lang.ObjectJava class for ComposedHandlerType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ComposedHandlerType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="additionalParams" type="{http://www.hybris.com/cockpitng/config/wizard-config}AdditionalParamType" maxOccurs="unbounded"/> </sequence> <attribute name="handlerBean" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="handlerId" 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<AdditionalParamType>additionalParamsprotected java.lang.StringhandlerBeanprotected java.lang.StringhandlerId
-
Constructor Summary
Constructors Constructor Description ComposedHandlerType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<AdditionalParamType>getAdditionalParams()Gets the value of the additionalParams property.java.lang.StringgetHandlerBean()Gets the value of the handlerBean property.java.lang.StringgetHandlerId()Gets the value of the handlerId property.voidsetHandlerBean(java.lang.String value)Sets the value of the handlerBean property.voidsetHandlerId(java.lang.String value)Sets the value of the handlerId property.
-
-
-
Field Detail
-
additionalParams
protected java.util.List<AdditionalParamType> additionalParams
-
handlerBean
protected java.lang.String handlerBean
-
handlerId
protected java.lang.String handlerId
-
-
Method Detail
-
getAdditionalParams
public java.util.List<AdditionalParamType> getAdditionalParams()
Gets the value of the additionalParams 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 additionalParams property.For example, to add a new item, do as follows:
getAdditionalParams().add(newItem);
Objects of the following type(s) are allowed in the list
AdditionalParamType
-
getHandlerBean
public java.lang.String getHandlerBean()
Gets the value of the handlerBean property.- Returns:
- possible object is
String
-
setHandlerBean
public void setHandlerBean(java.lang.String value)
Sets the value of the handlerBean property.- Parameters:
value- allowed object isString
-
getHandlerId
public java.lang.String getHandlerId()
Gets the value of the handlerId property.- Returns:
- possible object is
String
-
setHandlerId
public void setHandlerId(java.lang.String value)
Sets the value of the handlerId property.- Parameters:
value- allowed object isString
-
-