Class GeneratedSAPCpiOutboundQuoteCustomer

    • Field Detail

      • QUOTEID

        public static final java.lang.String QUOTEID
        Qualifier of the SAPCpiOutboundQuoteCustomer.quoteId attribute
        See Also:
        Constant Field Values
      • CUSTOMERROLECODE

        public static final java.lang.String CUSTOMERROLECODE
        Qualifier of the SAPCpiOutboundQuoteCustomer.customerRoleCode attribute
        See Also:
        Constant Field Values
      • CUSTOMERID

        public static final java.lang.String CUSTOMERID
        Qualifier of the SAPCpiOutboundQuoteCustomer.customerId attribute
        See Also:
        Constant Field Values
      • FIRSTNAME

        public static final java.lang.String FIRSTNAME
        Qualifier of the SAPCpiOutboundQuoteCustomer.firstName attribute
        See Also:
        Constant Field Values
      • LASTNAME

        public static final java.lang.String LASTNAME
        Qualifier of the SAPCpiOutboundQuoteCustomer.lastName attribute
        See Also:
        Constant Field Values
      • B2BUNITNAME

        public static final java.lang.String B2BUNITNAME
        Qualifier of the SAPCpiOutboundQuoteCustomer.b2bUnitName attribute
        See Also:
        Constant Field Values
      • LINE1

        public static final java.lang.String LINE1
        Qualifier of the SAPCpiOutboundQuoteCustomer.line1 attribute
        See Also:
        Constant Field Values
      • LINE2

        public static final java.lang.String LINE2
        Qualifier of the SAPCpiOutboundQuoteCustomer.line2 attribute
        See Also:
        Constant Field Values
      • CITY

        public static final java.lang.String CITY
        Qualifier of the SAPCpiOutboundQuoteCustomer.city attribute
        See Also:
        Constant Field Values
      • PHONENUMBER

        public static final java.lang.String PHONENUMBER
        Qualifier of the SAPCpiOutboundQuoteCustomer.phoneNumber attribute
        See Also:
        Constant Field Values
      • FAX

        public static final java.lang.String FAX
        Qualifier of the SAPCpiOutboundQuoteCustomer.fax attribute
        See Also:
        Constant Field Values
      • EMAIL

        public static final java.lang.String EMAIL
        Qualifier of the SAPCpiOutboundQuoteCustomer.email attribute
        See Also:
        Constant Field Values
      • COUNTRY

        public static final java.lang.String COUNTRY
        Qualifier of the SAPCpiOutboundQuoteCustomer.country attribute
        See Also:
        Constant Field Values
      • POSTALCODE

        public static final java.lang.String POSTALCODE
        Qualifier of the SAPCpiOutboundQuoteCustomer.postalcode attribute
        See Also:
        Constant Field Values
      • SAPCPIOUTBOUNDQUOTE

        public static final java.lang.String SAPCPIOUTBOUNDQUOTE
        Qualifier of the SAPCpiOutboundQuoteCustomer.sapCpiOutboundQuote 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

      • GeneratedSAPCpiOutboundQuoteCustomer

        public GeneratedSAPCpiOutboundQuoteCustomer()
    • Method Detail

      • getB2bUnitName

        public java.lang.String getB2bUnitName​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.b2bUnitName attribute.
        Returns:
        the b2bUnitName
      • getB2bUnitName

        public java.lang.String getB2bUnitName()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.b2bUnitName attribute.
        Returns:
        the b2bUnitName
      • setB2bUnitName

        public void setB2bUnitName​(SessionContext ctx,
                                   java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.b2bUnitName attribute.
        Parameters:
        value - the b2bUnitName
      • setB2bUnitName

        public void setB2bUnitName​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.b2bUnitName attribute.
        Parameters:
        value - the b2bUnitName
      • getCity

        public java.lang.String getCity​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.city attribute.
        Returns:
        the city
      • getCity

        public java.lang.String getCity()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.city attribute.
        Returns:
        the city
      • setCity

        public void setCity​(SessionContext ctx,
                            java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.city attribute.
        Parameters:
        value - the city
      • setCity

        public void setCity​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.city attribute.
        Parameters:
        value - the city
      • getCountry

        public java.lang.String getCountry​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.country attribute.
        Returns:
        the country
      • getCountry

        public java.lang.String getCountry()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.country attribute.
        Returns:
        the country
      • setCountry

        public void setCountry​(SessionContext ctx,
                               java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.country attribute.
        Parameters:
        value - the country
      • setCountry

        public void setCountry​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.country attribute.
        Parameters:
        value - the country
      • 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
      • getCustomerId

        public java.lang.String getCustomerId​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.customerId attribute.
        Returns:
        the customerId
      • getCustomerId

        public java.lang.String getCustomerId()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.customerId attribute.
        Returns:
        the customerId
      • setCustomerId

        public void setCustomerId​(SessionContext ctx,
                                  java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.customerId attribute.
        Parameters:
        value - the customerId
      • setCustomerId

        public void setCustomerId​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.customerId attribute.
        Parameters:
        value - the customerId
      • getCustomerRoleCode

        public java.lang.String getCustomerRoleCode​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.customerRoleCode attribute.
        Returns:
        the customerRoleCode
      • getCustomerRoleCode

        public java.lang.String getCustomerRoleCode()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.customerRoleCode attribute.
        Returns:
        the customerRoleCode
      • setCustomerRoleCode

        public void setCustomerRoleCode​(SessionContext ctx,
                                        java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.customerRoleCode attribute.
        Parameters:
        value - the customerRoleCode
      • setCustomerRoleCode

        public void setCustomerRoleCode​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.customerRoleCode attribute.
        Parameters:
        value - the customerRoleCode
      • getEmail

        public java.lang.String getEmail​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.email attribute.
        Returns:
        the email
      • getEmail

        public java.lang.String getEmail()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.email attribute.
        Returns:
        the email
      • setEmail

        public void setEmail​(SessionContext ctx,
                             java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.email attribute.
        Parameters:
        value - the email
      • setEmail

        public void setEmail​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.email attribute.
        Parameters:
        value - the email
      • getFax

        public java.lang.String getFax​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.fax attribute.
        Returns:
        the fax
      • getFax

        public java.lang.String getFax()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.fax attribute.
        Returns:
        the fax
      • setFax

        public void setFax​(SessionContext ctx,
                           java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.fax attribute.
        Parameters:
        value - the fax
      • setFax

        public void setFax​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.fax attribute.
        Parameters:
        value - the fax
      • getFirstName

        public java.lang.String getFirstName​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.firstName attribute.
        Returns:
        the firstName
      • getFirstName

        public java.lang.String getFirstName()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.firstName attribute.
        Returns:
        the firstName
      • setFirstName

        public void setFirstName​(SessionContext ctx,
                                 java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.firstName attribute.
        Parameters:
        value - the firstName
      • setFirstName

        public void setFirstName​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.firstName attribute.
        Parameters:
        value - the firstName
      • getLastName

        public java.lang.String getLastName​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.lastName attribute.
        Returns:
        the lastName
      • getLastName

        public java.lang.String getLastName()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.lastName attribute.
        Returns:
        the lastName
      • setLastName

        public void setLastName​(SessionContext ctx,
                                java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.lastName attribute.
        Parameters:
        value - the lastName
      • setLastName

        public void setLastName​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.lastName attribute.
        Parameters:
        value - the lastName
      • getLine1

        public java.lang.String getLine1​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.line1 attribute.
        Returns:
        the line1
      • getLine1

        public java.lang.String getLine1()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.line1 attribute.
        Returns:
        the line1
      • setLine1

        public void setLine1​(SessionContext ctx,
                             java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.line1 attribute.
        Parameters:
        value - the line1
      • setLine1

        public void setLine1​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.line1 attribute.
        Parameters:
        value - the line1
      • getLine2

        public java.lang.String getLine2​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.line2 attribute.
        Returns:
        the line2
      • getLine2

        public java.lang.String getLine2()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.line2 attribute.
        Returns:
        the line2
      • setLine2

        public void setLine2​(SessionContext ctx,
                             java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.line2 attribute.
        Parameters:
        value - the line2
      • setLine2

        public void setLine2​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.line2 attribute.
        Parameters:
        value - the line2
      • getPhoneNumber

        public java.lang.String getPhoneNumber​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.phoneNumber attribute.
        Returns:
        the phoneNumber
      • getPhoneNumber

        public java.lang.String getPhoneNumber()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.phoneNumber attribute.
        Returns:
        the phoneNumber
      • setPhoneNumber

        public void setPhoneNumber​(SessionContext ctx,
                                   java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.phoneNumber attribute.
        Parameters:
        value - the phoneNumber
      • setPhoneNumber

        public void setPhoneNumber​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.phoneNumber attribute.
        Parameters:
        value - the phoneNumber
      • getPostalcode

        public java.lang.String getPostalcode​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.postalcode attribute.
        Returns:
        the postalcode
      • getPostalcode

        public java.lang.String getPostalcode()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.postalcode attribute.
        Returns:
        the postalcode
      • setPostalcode

        public void setPostalcode​(SessionContext ctx,
                                  java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.postalcode attribute.
        Parameters:
        value - the postalcode
      • setPostalcode

        public void setPostalcode​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.postalcode attribute.
        Parameters:
        value - the postalcode
      • getQuoteId

        public java.lang.String getQuoteId​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.quoteId attribute.
        Returns:
        the quoteId
      • getQuoteId

        public java.lang.String getQuoteId()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.quoteId attribute.
        Returns:
        the quoteId
      • setQuoteId

        public void setQuoteId​(SessionContext ctx,
                               java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.quoteId attribute.
        Parameters:
        value - the quoteId
      • setQuoteId

        public void setQuoteId​(java.lang.String value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.quoteId attribute.
        Parameters:
        value - the quoteId
      • getSapCpiOutboundQuote

        public SAPCpiOutboundQuote getSapCpiOutboundQuote​(SessionContext ctx)
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.sapCpiOutboundQuote attribute.
        Returns:
        the sapCpiOutboundQuote
      • getSapCpiOutboundQuote

        public SAPCpiOutboundQuote getSapCpiOutboundQuote()
        Generated method - Getter of the SAPCpiOutboundQuoteCustomer.sapCpiOutboundQuote attribute.
        Returns:
        the sapCpiOutboundQuote
      • setSapCpiOutboundQuote

        public void setSapCpiOutboundQuote​(SessionContext ctx,
                                           SAPCpiOutboundQuote value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.sapCpiOutboundQuote attribute.
        Parameters:
        value - the sapCpiOutboundQuote
      • setSapCpiOutboundQuote

        public void setSapCpiOutboundQuote​(SAPCpiOutboundQuote value)
        Generated method - Setter of the SAPCpiOutboundQuoteCustomer.sapCpiOutboundQuote attribute.
        Parameters:
        value - the sapCpiOutboundQuote