Class AbstractFlowType
- java.lang.Object
-
- com.hybris.cockpitng.config.jaxb.wizard.AbstractFlowType
-
- Direct Known Subclasses:
Flow,SubflowType
public abstract class AbstractFlowType extends java.lang.ObjectJava class for AbstractFlowType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AbstractFlowType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="prepareStream" type="{http://www.hybris.com/cockpitng/config/wizard-config}PrepareType" minOccurs="0"/> <choice maxOccurs="unbounded"> <element name="step" type="{http://www.hybris.com/cockpitng/config/wizard-config}StepType" maxOccurs="unbounded" minOccurs="0"/> <element name="subflow" type="{http://www.hybris.com/cockpitng/config/wizard-config}SubflowType" maxOccurs="unbounded" minOccurs="0"/> </choice> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="model" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="merge-mode" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringgeneratedIdprotected java.util.List<ComposedHandlerType>handlerprotected java.lang.Stringidprotected java.lang.StringmergeModeprotected java.lang.Stringmodelprotected PrepareTypeprepareprotected java.util.List<java.lang.Object>stepOrSubflow
-
Constructor Summary
Constructors Constructor Description AbstractFlowType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterUnmarshal(javax.xml.bind.Unmarshaller u, java.lang.Object parent)java.lang.StringgetGeneratedId()java.util.List<ComposedHandlerType>getHandler()Gets the value of the handlers property.java.lang.StringgetId()Gets the value of the id property.java.lang.StringgetMergeMode()Gets the value of the mergeMode property.java.lang.StringgetModel()Gets the value of the model property.PrepareTypegetPrepare()Gets the value of the prepareStream property.java.util.List<java.lang.Object>getStepOrSubflow()Gets the value of the stepOrSubflow property.voidsetId(java.lang.String value)Sets the value of the id property.voidsetMergeMode(java.lang.String value)Sets the value of the mergeMode property.voidsetModel(java.lang.String value)Sets the value of the model property.voidsetPrepare(PrepareType value)Sets the value of the prepareStream property.
-
-
-
Field Detail
-
prepare
protected PrepareType prepare
-
stepOrSubflow
protected java.util.List<java.lang.Object> stepOrSubflow
-
handler
protected java.util.List<ComposedHandlerType> handler
-
id
protected java.lang.String id
-
model
protected java.lang.String model
-
mergeMode
protected java.lang.String mergeMode
-
generatedId
protected java.lang.String generatedId
-
-
Method Detail
-
getPrepare
public PrepareType getPrepare()
Gets the value of the prepareStream property.- Returns:
- possible object is
PrepareType
-
setPrepare
public void setPrepare(PrepareType value)
Sets the value of the prepareStream property.- Parameters:
value- allowed object isPrepareType
-
getStepOrSubflow
public java.util.List<java.lang.Object> getStepOrSubflow()
Gets the value of the stepOrSubflow 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 stepOrSubflow property.For example, to add a new item, do as follows:
getStepOrSubflow().add(newItem);Objects of the following type(s) are allowed in the list
StepTypeSubflowType
-
getHandler
public java.util.List<ComposedHandlerType> getHandler()
Gets the value of the handlers 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 handlers property.For example, to add a new item, do as follows:
getHandlers().add(newItem);Objects of the following type(s) are allowed in the list
ComposedHandlerType
-
getId
public java.lang.String getId()
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
public void setId(java.lang.String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getModel
public java.lang.String getModel()
Gets the value of the model property.- Returns:
- possible object is
String
-
setModel
public void setModel(java.lang.String value)
Sets the value of the model property.- Parameters:
value- allowed object isString
-
getMergeMode
public java.lang.String getMergeMode()
Gets the value of the mergeMode property.- Returns:
- possible object is
String
-
setMergeMode
public void setMergeMode(java.lang.String value)
Sets the value of the mergeMode property.- Parameters:
value- allowed object isString
-
getGeneratedId
public java.lang.String getGeneratedId()
-
afterUnmarshal
public void afterUnmarshal(javax.xml.bind.Unmarshaller u, java.lang.Object parent)
-
-