Class AbstractFlowType

  • Direct Known Subclasses:
    Flow, SubflowType

    public abstract class AbstractFlowType
    extends java.lang.Object

    Java 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>
     
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void afterUnmarshal​(javax.xml.bind.Unmarshaller u, java.lang.Object parent)  
      java.lang.String getGeneratedId()  
      java.util.List<ComposedHandlerType> getHandler()
      Gets the value of the handlers property.
      java.lang.String getId()
      Gets the value of the id property.
      java.lang.String getMergeMode()
      Gets the value of the mergeMode property.
      java.lang.String getModel()
      Gets the value of the model property.
      PrepareType getPrepare()
      Gets the value of the prepareStream property.
      java.util.List<java.lang.Object> getStepOrSubflow()
      Gets the value of the stepOrSubflow property.
      void setId​(java.lang.String value)
      Sets the value of the id property.
      void setMergeMode​(java.lang.String value)
      Sets the value of the mergeMode property.
      void setModel​(java.lang.String value)
      Sets the value of the model property.
      void setPrepare​(PrepareType value)
      Sets the value of the prepareStream property.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • stepOrSubflow

        protected java.util.List<java.lang.Object> stepOrSubflow
      • id

        protected java.lang.String id
      • model

        protected java.lang.String model
      • mergeMode

        protected java.lang.String mergeMode
      • generatedId

        protected java.lang.String generatedId
    • Constructor Detail

      • AbstractFlowType

        public AbstractFlowType()
    • 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 is PrepareType
      • 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 set method 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 StepType SubflowType

      • 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 set method 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 is String
      • 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 is String
      • 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 is String
      • getGeneratedId

        public java.lang.String getGeneratedId()
      • afterUnmarshal

        public void afterUnmarshal​(javax.xml.bind.Unmarshaller u,
                                   java.lang.Object parent)