<states> Element
This element defines the states for the line's workflow.
Parent Elements
Attributes
None.
Child Elements
| Name | Description | Required | 
|---|---|---|
| state | Adds a state entry. There can be any number of these elements. | No | 
Remarks
Newly-created units have no initial state by default. To configure transitions from this initial
condition, use the special state name None. For example, the following defines what will happen
when a "Boxout" transition is requested for units that have not yet transitioned into any state.
<states>
  <state name="None">
    <transition name="Boxout" state="Warehoused" />
  </state>
  <state name="Warehoused" isProduced="true" />
</states>