Class Address

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

    public class Address
    extends GeneratedAddress
    The hybris Platform address item.

    Addresses are owned by users and used for addressing orders and carts. All fields of a address are stored as properties. This way addresses are easily extendable. All default field names are defined as constants.

    See Also:
    Serialized Form
    • Field Detail

      • STREETTYPE

        @Deprecated
        public static final java.lang.String STREETTYPE
        Deprecated.
        since ages - Attribute does not longer exists.
        See Also:
        Constant Field Values
      • FLOOR

        @Deprecated
        public static final java.lang.String FLOOR
        Deprecated.
        since ages - Attribute does not longer exists.
        See Also:
        Constant Field Values
      • PLANET

        @Deprecated
        public static final java.lang.String PLANET
        Deprecated.
        since ages - Attribute does not longer exists.
        See Also:
        Constant Field Values
      • STREETSECTION

        @Deprecated
        public static final java.lang.String STREETSECTION
        Deprecated.
        since ages - Attribute does not longer exists.
        See Also:
        Constant Field Values
      • CUSTOM1

        @Deprecated
        public static final java.lang.String CUSTOM1
        Deprecated.
        since ages - Attribute does not longer exists.
        See Also:
        Constant Field Values
      • CUSTOM2

        @Deprecated
        public static final java.lang.String CUSTOM2
        Deprecated.
        since ages - Attribute does not longer exists.
        See Also:
        Constant Field Values
      • USER

        public static final java.lang.String USER
        Constant identifier for owner attribute of Address type.
      • DATHEOFBIRTH

        @Deprecated
        public static final java.lang.String DATHEOFBIRTH
        Deprecated.
        since ages
        See Also:
        Constant Field Values
      • GENDER_ENUM_TYPE

        @Deprecated
        public static final java.lang.String GENDER_ENUM_TYPE
        Deprecated.
        since ages
        Gender enum type code.
        See Also:
        Constant Field Values
    • Constructor Detail

      • Address

        public Address()
    • Method Detail

      • 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 GeneratedAddress
        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
      • getUser

        public User getUser()
        Returns the assigned User of this Address.
        Returns:
        the assigned User of this Address
      • setUser

        public void setUser​(User user)
        Assigns a new User to this Address.
        Parameters:
        user - the new User
      • setOriginal

        public void setOriginal​(Address value)
        Description copied from class: GeneratedAddress
        Generated method - Setter of the Address.original attribute.
        Overrides:
        setOriginal in class GeneratedAddress
        Parameters:
        value - the original