Class Mapping


  • public class Mapping
    extends java.lang.Object

    Java class for mapping complex type.

    The following schema fragment specifies the expected content contained within this class.

     <complexType name="mapping">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
             <element name="transitionRef" type="{http://www.w3.org/2001/XMLSchema}string"/>
             <element name="roleRef" type="{}roleRef" maxOccurs="unbounded" minOccurs="0"/>
             <element name="dataRef" type="{}dataRef" maxOccurs="unbounded" minOccurs="0"/>
             <element name="dataGroup" type="{}dataGroup" maxOccurs="unbounded" minOccurs="0"/>
             <element name="trigger" type="{}trigger" maxOccurs="unbounded" minOccurs="0"/>
           </sequence>
         </restriction>
       </complexContent>
     </complexType>
     
    • Constructor Summary

      Constructors 
      Constructor Description
      Mapping()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<DataGroup> getDataGroup()
      Gets the value of the dataGroup property.
      java.util.List<DataRef> getDataRef()
      Gets the value of the dataRef property.
      java.lang.String getId()
      Gets the value of the id property.
      java.util.List<RoleRef> getRoleRef()
      Gets the value of the roleRef property.
      java.lang.String getTransitionRef()
      Gets the value of the transitionRef property.
      java.util.List<Trigger> getTrigger()
      Gets the value of the trigger property.
      void setId​(java.lang.String value)
      Sets the value of the id property.
      void setTransitionRef​(java.lang.String value)
      Sets the value of the transitionRef property.
      • Methods inherited from class java.lang.Object

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

      • id

        protected java.lang.String id
      • transitionRef

        protected java.lang.String transitionRef
      • roleRef

        protected java.util.List<RoleRef> roleRef
      • dataRef

        protected java.util.List<DataRef> dataRef
      • dataGroup

        protected java.util.List<DataGroup> dataGroup
      • trigger

        protected java.util.List<Trigger> trigger
    • Constructor Detail

      • Mapping

        public Mapping()
    • Method Detail

      • 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
      • getTransitionRef

        public java.lang.String getTransitionRef()
        Gets the value of the transitionRef property.
        Returns:
        possible object is String
      • setTransitionRef

        public void setTransitionRef​(java.lang.String value)
        Sets the value of the transitionRef property.
        Parameters:
        value - allowed object is String
      • getRoleRef

        public java.util.List<RoleRef> getRoleRef()
        Gets the value of the roleRef 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 roleRef property.

        For example, to add a new item, do as follows:

            getRoleRef().add(newItem);
         

        Objects of the following type(s) are allowed in the list RoleRef

      • getDataRef

        public java.util.List<DataRef> getDataRef()
        Gets the value of the dataRef 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 dataRef property.

        For example, to add a new item, do as follows:

            getDataRef().add(newItem);
         

        Objects of the following type(s) are allowed in the list DataRef

      • getDataGroup

        public java.util.List<DataGroup> getDataGroup()
        Gets the value of the dataGroup 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 dataGroup property.

        For example, to add a new item, do as follows:

            getDataGroup().add(newItem);
         

        Objects of the following type(s) are allowed in the list DataGroup

      • getTrigger

        public java.util.List<Trigger> getTrigger()
        Gets the value of the trigger 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 trigger property.

        For example, to add a new item, do as follows:

            getTrigger().add(newItem);
         

        Objects of the following type(s) are allowed in the list Trigger