Class SAPCpiOutboundOrderItemConfigValue

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable

    public class SAPCpiOutboundOrderItemConfigValue
    extends GenericItem
    Generated class for type SAPCpiOutboundOrderItemConfigValue.
    See Also:
    Serialized Form
    • Field Detail

      • CONFIGURATIONID

        public static final java.lang.String CONFIGURATIONID
        Qualifier of the SAPCpiOutboundOrderItemConfigValue.configurationId attribute
        See Also:
        Constant Field Values
      • INSTANCEID

        public static final java.lang.String INSTANCEID
        Qualifier of the SAPCpiOutboundOrderItemConfigValue.instanceId attribute
        See Also:
        Constant Field Values
      • CHARACTERISTICID

        public static final java.lang.String CHARACTERISTICID
        Qualifier of the SAPCpiOutboundOrderItemConfigValue.characteristicId attribute
        See Also:
        Constant Field Values
      • CHARACTERISTICTEXT

        public static final java.lang.String CHARACTERISTICTEXT
        Qualifier of the SAPCpiOutboundOrderItemConfigValue.characteristicText attribute
        See Also:
        Constant Field Values
      • VALUEID

        public static final java.lang.String VALUEID
        Qualifier of the SAPCpiOutboundOrderItemConfigValue.valueId attribute
        See Also:
        Constant Field Values
      • VALUETEXT

        public static final java.lang.String VALUETEXT
        Qualifier of the SAPCpiOutboundOrderItemConfigValue.valueText attribute
        See Also:
        Constant Field Values
      • VALUECODE

        public static final java.lang.String VALUECODE
        Qualifier of the SAPCpiOutboundOrderItemConfigValue.valueCode attribute
        See Also:
        Constant Field Values
      • AUTHOR

        public static final java.lang.String AUTHOR
        Qualifier of the SAPCpiOutboundOrderItemConfigValue.author attribute
        See Also:
        Constant Field Values
      • SAPCPIOUTBOUNDORDER

        public static final java.lang.String SAPCPIOUTBOUNDORDER
        Qualifier of the SAPCpiOutboundOrderItemConfigValue.sapCpiOutboundOrder attribute
        See Also:
        Constant Field Values
      • DEFAULT_INITIAL_ATTRIBUTES

        protected static final java.util.Map<java.lang.String,​Item.AttributeMode> DEFAULT_INITIAL_ATTRIBUTES
    • Constructor Detail

      • SAPCpiOutboundOrderItemConfigValue

        public SAPCpiOutboundOrderItemConfigValue()
    • Method Detail

      • getAuthor

        public java.lang.String getAuthor​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.author attribute.
        Returns:
        the author
      • getAuthor

        public java.lang.String getAuthor()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.author attribute.
        Returns:
        the author
      • setAuthor

        public void setAuthor​(SessionContext ctx,
                              java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.author attribute.
        Parameters:
        value - the author
      • setAuthor

        public void setAuthor​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.author attribute.
        Parameters:
        value - the author
      • getCharacteristicId

        public java.lang.String getCharacteristicId​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.characteristicId attribute.
        Returns:
        the characteristicId
      • getCharacteristicId

        public java.lang.String getCharacteristicId()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.characteristicId attribute.
        Returns:
        the characteristicId
      • setCharacteristicId

        public void setCharacteristicId​(SessionContext ctx,
                                        java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.characteristicId attribute.
        Parameters:
        value - the characteristicId
      • setCharacteristicId

        public void setCharacteristicId​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.characteristicId attribute.
        Parameters:
        value - the characteristicId
      • getCharacteristicText

        public java.lang.String getCharacteristicText​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.characteristicText attribute.
        Returns:
        the characteristicText
      • getCharacteristicText

        public java.lang.String getCharacteristicText()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.characteristicText attribute.
        Returns:
        the characteristicText
      • setCharacteristicText

        public void setCharacteristicText​(SessionContext ctx,
                                          java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.characteristicText attribute.
        Parameters:
        value - the characteristicText
      • setCharacteristicText

        public void setCharacteristicText​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.characteristicText attribute.
        Parameters:
        value - the characteristicText
      • getConfigurationId

        public java.lang.String getConfigurationId​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.configurationId attribute.
        Returns:
        the configurationId
      • getConfigurationId

        public java.lang.String getConfigurationId()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.configurationId attribute.
        Returns:
        the configurationId
      • setConfigurationId

        public void setConfigurationId​(SessionContext ctx,
                                       java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.configurationId attribute.
        Parameters:
        value - the configurationId
      • setConfigurationId

        public void setConfigurationId​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.configurationId attribute.
        Parameters:
        value - the configurationId
      • createItem

        protected Item createItem​(SessionContext ctx,
                                  ComposedType type,
                                  Item.ItemAttributeMap allAttributes)
                           throws JaloBusinessException
        Description copied from class: Item
        Has to be implemented for each concrete subtype of item. This method is responsible for creating a new item instance ( by calling managers, ejb homes, etc. ) during ComposedType.newInstance(Map).

        In case this method uses any of the attribute values during creation it is required to override Item.getNonInitialAttributes(SessionContext, ItemAttributeMap) too.
        Sn example:

        
         public static final String MY_ATTRIBUTE = "someAttribute"; ... protected Item createItem(SessionContext
         ctx, ComposedType type, Map allAttributes ) throws JaloBusinessException { MyManager man = ... return
         man.createMyItem( (String)allAttributes.get(MY_ATTRIBUTE) );
         // here MY_ATTRIBUTE is used for creation, so it must not be set again } protected Map getNonInitialAttributes(
         SessionContext ctx, Map allAttributes ) { // let superclass remove its own initial attributes Map ret =
         super.getNonInitialAttributes( ctx, allAttributes );
         // remove MY_ATTRIBUTE from all attributes since if has already been set ret.remove(MY_ATTRIBUTE); return ret; }
        
         
        Overrides:
        createItem in class GenericItem
        Parameters:
        ctx - the current session context which this item is created within
        type - the actual item type ( since subtypes may not provide a own jalo class this may be different from the type which this method was implemented for )
        Returns:
        the new item instance
        Throws:
        JaloBusinessException - indicates an error during creation - any changes will be rollbacked
      • getInstanceId

        public java.lang.String getInstanceId​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.instanceId attribute.
        Returns:
        the instanceId
      • getInstanceId

        public java.lang.String getInstanceId()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.instanceId attribute.
        Returns:
        the instanceId
      • setInstanceId

        public void setInstanceId​(SessionContext ctx,
                                  java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.instanceId attribute.
        Parameters:
        value - the instanceId
      • setInstanceId

        public void setInstanceId​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.instanceId attribute.
        Parameters:
        value - the instanceId
      • getSapCpiOutboundOrder

        public SAPCpiOutboundOrder getSapCpiOutboundOrder​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.sapCpiOutboundOrder attribute.
        Returns:
        the sapCpiOutboundOrder
      • getSapCpiOutboundOrder

        public SAPCpiOutboundOrder getSapCpiOutboundOrder()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.sapCpiOutboundOrder attribute.
        Returns:
        the sapCpiOutboundOrder
      • setSapCpiOutboundOrder

        public void setSapCpiOutboundOrder​(SessionContext ctx,
                                           SAPCpiOutboundOrder value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.sapCpiOutboundOrder attribute.
        Parameters:
        value - the sapCpiOutboundOrder
      • setSapCpiOutboundOrder

        public void setSapCpiOutboundOrder​(SAPCpiOutboundOrder value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.sapCpiOutboundOrder attribute.
        Parameters:
        value - the sapCpiOutboundOrder
      • getValueCode

        public java.lang.String getValueCode​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.valueCode attribute.
        Returns:
        the valueCode
      • getValueCode

        public java.lang.String getValueCode()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.valueCode attribute.
        Returns:
        the valueCode
      • setValueCode

        public void setValueCode​(SessionContext ctx,
                                 java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.valueCode attribute.
        Parameters:
        value - the valueCode
      • setValueCode

        public void setValueCode​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.valueCode attribute.
        Parameters:
        value - the valueCode
      • getValueId

        public java.lang.String getValueId​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.valueId attribute.
        Returns:
        the valueId
      • getValueId

        public java.lang.String getValueId()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.valueId attribute.
        Returns:
        the valueId
      • setValueId

        public void setValueId​(SessionContext ctx,
                               java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.valueId attribute.
        Parameters:
        value - the valueId
      • setValueId

        public void setValueId​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.valueId attribute.
        Parameters:
        value - the valueId
      • getValueText

        public java.lang.String getValueText​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.valueText attribute.
        Returns:
        the valueText
      • getValueText

        public java.lang.String getValueText()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigValue.valueText attribute.
        Returns:
        the valueText
      • setValueText

        public void setValueText​(SessionContext ctx,
                                 java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.valueText attribute.
        Parameters:
        value - the valueText
      • setValueText

        public void setValueText​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigValue.valueText attribute.
        Parameters:
        value - the valueText