Class SAPCpiOutboundOrderItemConfigHierarchy

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

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

      • CONFIGURATIONID

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

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

        public static final java.lang.String PARENTID
        Qualifier of the SAPCpiOutboundOrderItemConfigHierarchy.parentId attribute
        See Also:
        Constant Field Values
      • BOMNUMBER

        public static final java.lang.String BOMNUMBER
        Qualifier of the SAPCpiOutboundOrderItemConfigHierarchy.bomNumber attribute
        See Also:
        Constant Field Values
      • OBJECTTYPE

        public static final java.lang.String OBJECTTYPE
        Qualifier of the SAPCpiOutboundOrderItemConfigHierarchy.objectType attribute
        See Also:
        Constant Field Values
      • CLASSTYPE

        public static final java.lang.String CLASSTYPE
        Qualifier of the SAPCpiOutboundOrderItemConfigHierarchy.classType attribute
        See Also:
        Constant Field Values
      • OBJECTKEY

        public static final java.lang.String OBJECTKEY
        Qualifier of the SAPCpiOutboundOrderItemConfigHierarchy.objectKey attribute
        See Also:
        Constant Field Values
      • AUTHOR

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

        public static final java.lang.String SALESRELEVANT
        Qualifier of the SAPCpiOutboundOrderItemConfigHierarchy.salesRelevant attribute
        See Also:
        Constant Field Values
      • SAPCPIOUTBOUNDORDER

        public static final java.lang.String SAPCPIOUTBOUNDORDER
        Qualifier of the SAPCpiOutboundOrderItemConfigHierarchy.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

      • SAPCpiOutboundOrderItemConfigHierarchy

        public SAPCpiOutboundOrderItemConfigHierarchy()
    • Method Detail

      • getAuthor

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

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

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

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

        public java.lang.String getBomNumber​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.bomNumber attribute.
        Returns:
        the bomNumber
      • getBomNumber

        public java.lang.String getBomNumber()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.bomNumber attribute.
        Returns:
        the bomNumber
      • setBomNumber

        public void setBomNumber​(SessionContext ctx,
                                 java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.bomNumber attribute.
        Parameters:
        value - the bomNumber
      • setBomNumber

        public void setBomNumber​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.bomNumber attribute.
        Parameters:
        value - the bomNumber
      • getClassType

        public java.lang.String getClassType​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.classType attribute.
        Returns:
        the classType
      • getClassType

        public java.lang.String getClassType()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.classType attribute.
        Returns:
        the classType
      • setClassType

        public void setClassType​(SessionContext ctx,
                                 java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.classType attribute.
        Parameters:
        value - the classType
      • setClassType

        public void setClassType​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.classType attribute.
        Parameters:
        value - the classType
      • getConfigurationId

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

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

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

        public void setConfigurationId​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.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 SAPCpiOutboundOrderItemConfigHierarchy.instanceId attribute.
        Returns:
        the instanceId
      • getInstanceId

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

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

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

        public java.lang.String getObjectKey​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.objectKey attribute.
        Returns:
        the objectKey
      • getObjectKey

        public java.lang.String getObjectKey()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.objectKey attribute.
        Returns:
        the objectKey
      • setObjectKey

        public void setObjectKey​(SessionContext ctx,
                                 java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.objectKey attribute.
        Parameters:
        value - the objectKey
      • setObjectKey

        public void setObjectKey​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.objectKey attribute.
        Parameters:
        value - the objectKey
      • getObjectType

        public java.lang.String getObjectType​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.objectType attribute.
        Returns:
        the objectType
      • getObjectType

        public java.lang.String getObjectType()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.objectType attribute.
        Returns:
        the objectType
      • setObjectType

        public void setObjectType​(SessionContext ctx,
                                  java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.objectType attribute.
        Parameters:
        value - the objectType
      • setObjectType

        public void setObjectType​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.objectType attribute.
        Parameters:
        value - the objectType
      • getParentId

        public java.lang.String getParentId​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.parentId attribute.
        Returns:
        the parentId
      • getParentId

        public java.lang.String getParentId()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.parentId attribute.
        Returns:
        the parentId
      • setParentId

        public void setParentId​(SessionContext ctx,
                                java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.parentId attribute.
        Parameters:
        value - the parentId
      • setParentId

        public void setParentId​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.parentId attribute.
        Parameters:
        value - the parentId
      • isSalesRelevant

        public java.lang.Boolean isSalesRelevant​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.salesRelevant attribute.
        Returns:
        the salesRelevant
      • isSalesRelevant

        public java.lang.Boolean isSalesRelevant()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.salesRelevant attribute.
        Returns:
        the salesRelevant
      • isSalesRelevantAsPrimitive

        public boolean isSalesRelevantAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.salesRelevant attribute.
        Returns:
        the salesRelevant
      • isSalesRelevantAsPrimitive

        public boolean isSalesRelevantAsPrimitive()
        Generated method - Getter of the SAPCpiOutboundOrderItemConfigHierarchy.salesRelevant attribute.
        Returns:
        the salesRelevant
      • setSalesRelevant

        public void setSalesRelevant​(SessionContext ctx,
                                     java.lang.Boolean value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.salesRelevant attribute.
        Parameters:
        value - the salesRelevant
      • setSalesRelevant

        public void setSalesRelevant​(java.lang.Boolean value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.salesRelevant attribute.
        Parameters:
        value - the salesRelevant
      • setSalesRelevant

        public void setSalesRelevant​(SessionContext ctx,
                                     boolean value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.salesRelevant attribute.
        Parameters:
        value - the salesRelevant
      • setSalesRelevant

        public void setSalesRelevant​(boolean value)
        Generated method - Setter of the SAPCpiOutboundOrderItemConfigHierarchy.salesRelevant attribute.
        Parameters:
        value - the salesRelevant
      • getSapCpiOutboundOrder

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

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

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

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