Class GeneratedPointOfService

    • Field Detail

      • NAME

        public static final java.lang.String NAME
        Qualifier of the PointOfService.name attribute
        See Also:
        Constant Field Values
      • ADDRESS

        public static final java.lang.String ADDRESS
        Qualifier of the PointOfService.address attribute
        See Also:
        Constant Field Values
      • DESCRIPTION

        public static final java.lang.String DESCRIPTION
        Qualifier of the PointOfService.description attribute
        See Also:
        Constant Field Values
      • TYPE

        public static final java.lang.String TYPE
        Qualifier of the PointOfService.type attribute
        See Also:
        Constant Field Values
      • MAPICON

        public static final java.lang.String MAPICON
        Qualifier of the PointOfService.mapIcon attribute
        See Also:
        Constant Field Values
      • LATITUDE

        public static final java.lang.String LATITUDE
        Qualifier of the PointOfService.latitude attribute
        See Also:
        Constant Field Values
      • LONGITUDE

        public static final java.lang.String LONGITUDE
        Qualifier of the PointOfService.longitude attribute
        See Also:
        Constant Field Values
      • GEOCODETIMESTAMP

        public static final java.lang.String GEOCODETIMESTAMP
        Qualifier of the PointOfService.geocodeTimestamp attribute
        See Also:
        Constant Field Values
      • OPENINGSCHEDULE

        public static final java.lang.String OPENINGSCHEDULE
        Qualifier of the PointOfService.openingSchedule attribute
        See Also:
        Constant Field Values
      • STORECONTENT

        public static final java.lang.String STORECONTENT
        Qualifier of the PointOfService.storeContent attribute
        See Also:
        Constant Field Values
      • STOREIMAGE

        public static final java.lang.String STOREIMAGE
        Qualifier of the PointOfService.storeImage attribute
        See Also:
        Constant Field Values
      • BUSINESSCATEGORY

        public static final java.lang.String BUSINESSCATEGORY
        Qualifier of the PointOfService.businessCategory attribute
        See Also:
        Constant Field Values
      • BASESTORE

        public static final java.lang.String BASESTORE
        Qualifier of the PointOfService.baseStore 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

      • GeneratedPointOfService

        public GeneratedPointOfService()
    • Method Detail

      • getAddress

        public Address getAddress​(SessionContext ctx)
        Generated method - Getter of the PointOfService.address attribute.
        Returns:
        the address
      • getAddress

        public Address getAddress()
        Generated method - Getter of the PointOfService.address attribute.
        Returns:
        the address
      • setAddress

        public void setAddress​(SessionContext ctx,
                               Address value)
        Generated method - Setter of the PointOfService.address attribute.
        Parameters:
        value - the address
      • setAddress

        public void setAddress​(Address value)
        Generated method - Setter of the PointOfService.address attribute.
        Parameters:
        value - the address
      • getBaseStore

        public BaseStore getBaseStore​(SessionContext ctx)
        Generated method - Getter of the PointOfService.baseStore attribute.
        Returns:
        the baseStore
      • getBaseStore

        public BaseStore getBaseStore()
        Generated method - Getter of the PointOfService.baseStore attribute.
        Returns:
        the baseStore
      • setBaseStore

        public void setBaseStore​(SessionContext ctx,
                                 BaseStore value)
        Generated method - Setter of the PointOfService.baseStore attribute.
        Parameters:
        value - the baseStore
      • setBaseStore

        public void setBaseStore​(BaseStore value)
        Generated method - Setter of the PointOfService.baseStore attribute.
        Parameters:
        value - the baseStore
      • getBusinessCategory

        public java.lang.String getBusinessCategory​(SessionContext ctx)
        Generated method - Getter of the PointOfService.businessCategory attribute.
        Returns:
        the businessCategory - Specifies the overarching business category
      • getBusinessCategory

        public java.lang.String getBusinessCategory()
        Generated method - Getter of the PointOfService.businessCategory attribute.
        Returns:
        the businessCategory - Specifies the overarching business category
      • setBusinessCategory

        public void setBusinessCategory​(SessionContext ctx,
                                        java.lang.String value)
        Generated method - Setter of the PointOfService.businessCategory attribute.
        Parameters:
        value - the businessCategory - Specifies the overarching business category
      • setBusinessCategory

        public void setBusinessCategory​(java.lang.String value)
        Generated method - Setter of the PointOfService.businessCategory attribute.
        Parameters:
        value - the businessCategory - Specifies the overarching business category
      • 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
      • getDescription

        public java.lang.String getDescription​(SessionContext ctx)
        Generated method - Getter of the PointOfService.description attribute.
        Returns:
        the description
      • getDescription

        public java.lang.String getDescription()
        Generated method - Getter of the PointOfService.description attribute.
        Returns:
        the description
      • setDescription

        public void setDescription​(SessionContext ctx,
                                   java.lang.String value)
        Generated method - Setter of the PointOfService.description attribute.
        Parameters:
        value - the description
      • setDescription

        public void setDescription​(java.lang.String value)
        Generated method - Setter of the PointOfService.description attribute.
        Parameters:
        value - the description
      • getGeocodeTimestamp

        public java.util.Date getGeocodeTimestamp​(SessionContext ctx)
        Generated method - Getter of the PointOfService.geocodeTimestamp attribute.
        Returns:
        the geocodeTimestamp
      • getGeocodeTimestamp

        public java.util.Date getGeocodeTimestamp()
        Generated method - Getter of the PointOfService.geocodeTimestamp attribute.
        Returns:
        the geocodeTimestamp
      • setGeocodeTimestamp

        public void setGeocodeTimestamp​(SessionContext ctx,
                                        java.util.Date value)
        Generated method - Setter of the PointOfService.geocodeTimestamp attribute.
        Parameters:
        value - the geocodeTimestamp
      • setGeocodeTimestamp

        public void setGeocodeTimestamp​(java.util.Date value)
        Generated method - Setter of the PointOfService.geocodeTimestamp attribute.
        Parameters:
        value - the geocodeTimestamp
      • getLatitude

        public java.lang.Double getLatitude​(SessionContext ctx)
        Generated method - Getter of the PointOfService.latitude attribute.
        Returns:
        the latitude
      • getLatitude

        public java.lang.Double getLatitude()
        Generated method - Getter of the PointOfService.latitude attribute.
        Returns:
        the latitude
      • getLatitudeAsPrimitive

        public double getLatitudeAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the PointOfService.latitude attribute.
        Returns:
        the latitude
      • getLatitudeAsPrimitive

        public double getLatitudeAsPrimitive()
        Generated method - Getter of the PointOfService.latitude attribute.
        Returns:
        the latitude
      • setLatitude

        public void setLatitude​(SessionContext ctx,
                                java.lang.Double value)
        Generated method - Setter of the PointOfService.latitude attribute.
        Parameters:
        value - the latitude
      • setLatitude

        public void setLatitude​(java.lang.Double value)
        Generated method - Setter of the PointOfService.latitude attribute.
        Parameters:
        value - the latitude
      • setLatitude

        public void setLatitude​(SessionContext ctx,
                                double value)
        Generated method - Setter of the PointOfService.latitude attribute.
        Parameters:
        value - the latitude
      • setLatitude

        public void setLatitude​(double value)
        Generated method - Setter of the PointOfService.latitude attribute.
        Parameters:
        value - the latitude
      • getLongitude

        public java.lang.Double getLongitude​(SessionContext ctx)
        Generated method - Getter of the PointOfService.longitude attribute.
        Returns:
        the longitude
      • getLongitude

        public java.lang.Double getLongitude()
        Generated method - Getter of the PointOfService.longitude attribute.
        Returns:
        the longitude
      • getLongitudeAsPrimitive

        public double getLongitudeAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the PointOfService.longitude attribute.
        Returns:
        the longitude
      • getLongitudeAsPrimitive

        public double getLongitudeAsPrimitive()
        Generated method - Getter of the PointOfService.longitude attribute.
        Returns:
        the longitude
      • setLongitude

        public void setLongitude​(SessionContext ctx,
                                 java.lang.Double value)
        Generated method - Setter of the PointOfService.longitude attribute.
        Parameters:
        value - the longitude
      • setLongitude

        public void setLongitude​(java.lang.Double value)
        Generated method - Setter of the PointOfService.longitude attribute.
        Parameters:
        value - the longitude
      • setLongitude

        public void setLongitude​(SessionContext ctx,
                                 double value)
        Generated method - Setter of the PointOfService.longitude attribute.
        Parameters:
        value - the longitude
      • setLongitude

        public void setLongitude​(double value)
        Generated method - Setter of the PointOfService.longitude attribute.
        Parameters:
        value - the longitude
      • getMapIcon

        public Media getMapIcon​(SessionContext ctx)
        Generated method - Getter of the PointOfService.mapIcon attribute.
        Returns:
        the mapIcon
      • getMapIcon

        public Media getMapIcon()
        Generated method - Getter of the PointOfService.mapIcon attribute.
        Returns:
        the mapIcon
      • setMapIcon

        public void setMapIcon​(SessionContext ctx,
                               Media value)
        Generated method - Setter of the PointOfService.mapIcon attribute.
        Parameters:
        value - the mapIcon
      • setMapIcon

        public void setMapIcon​(Media value)
        Generated method - Setter of the PointOfService.mapIcon attribute.
        Parameters:
        value - the mapIcon
      • getName

        public java.lang.String getName​(SessionContext ctx)
        Generated method - Getter of the PointOfService.name attribute.
        Returns:
        the name
      • getName

        public java.lang.String getName()
        Generated method - Getter of the PointOfService.name attribute.
        Returns:
        the name
      • setName

        protected void setName​(SessionContext ctx,
                               java.lang.String value)
        Generated method - Setter of the PointOfService.name attribute.
        Parameters:
        value - the name
      • setName

        protected void setName​(java.lang.String value)
        Generated method - Setter of the PointOfService.name attribute.
        Parameters:
        value - the name
      • getOpeningSchedule

        public OpeningSchedule getOpeningSchedule​(SessionContext ctx)
        Generated method - Getter of the PointOfService.openingSchedule attribute.
        Returns:
        the openingSchedule - It is property representing a schedule of opening hours of this point of service.
      • getOpeningSchedule

        public OpeningSchedule getOpeningSchedule()
        Generated method - Getter of the PointOfService.openingSchedule attribute.
        Returns:
        the openingSchedule - It is property representing a schedule of opening hours of this point of service.
      • setOpeningSchedule

        public void setOpeningSchedule​(SessionContext ctx,
                                       OpeningSchedule value)
        Generated method - Setter of the PointOfService.openingSchedule attribute.
        Parameters:
        value - the openingSchedule - It is property representing a schedule of opening hours of this point of service.
      • setOpeningSchedule

        public void setOpeningSchedule​(OpeningSchedule value)
        Generated method - Setter of the PointOfService.openingSchedule attribute.
        Parameters:
        value - the openingSchedule - It is property representing a schedule of opening hours of this point of service.
      • getStoreContent

        public java.lang.String getStoreContent​(SessionContext ctx)
        Generated method - Getter of the PointOfService.storeContent attribute.
        Returns:
        the storeContent - It is a localized attribute that contains informational store content text.
      • getStoreContent

        public java.lang.String getStoreContent()
        Generated method - Getter of the PointOfService.storeContent attribute.
        Returns:
        the storeContent - It is a localized attribute that contains informational store content text.
      • getAllStoreContent

        public java.util.Map<Language,​java.lang.String> getAllStoreContent​(SessionContext ctx)
        Generated method - Getter of the PointOfService.storeContent attribute.
        Returns:
        the localized storeContent - It is a localized attribute that contains informational store content text.
      • getAllStoreContent

        public java.util.Map<Language,​java.lang.String> getAllStoreContent()
        Generated method - Getter of the PointOfService.storeContent attribute.
        Returns:
        the localized storeContent - It is a localized attribute that contains informational store content text.
      • setStoreContent

        public void setStoreContent​(SessionContext ctx,
                                    java.lang.String value)
        Generated method - Setter of the PointOfService.storeContent attribute.
        Parameters:
        value - the storeContent - It is a localized attribute that contains informational store content text.
      • setStoreContent

        public void setStoreContent​(java.lang.String value)
        Generated method - Setter of the PointOfService.storeContent attribute.
        Parameters:
        value - the storeContent - It is a localized attribute that contains informational store content text.
      • setAllStoreContent

        public void setAllStoreContent​(SessionContext ctx,
                                       java.util.Map<Language,​java.lang.String> value)
        Generated method - Setter of the PointOfService.storeContent attribute.
        Parameters:
        value - the storeContent - It is a localized attribute that contains informational store content text.
      • setAllStoreContent

        public void setAllStoreContent​(java.util.Map<Language,​java.lang.String> value)
        Generated method - Setter of the PointOfService.storeContent attribute.
        Parameters:
        value - the storeContent - It is a localized attribute that contains informational store content text.
      • getStoreImage

        public MediaContainer getStoreImage​(SessionContext ctx)
        Generated method - Getter of the PointOfService.storeImage attribute.
        Returns:
        the storeImage - It is a media container with additional images of the store.
      • getStoreImage

        public MediaContainer getStoreImage()
        Generated method - Getter of the PointOfService.storeImage attribute.
        Returns:
        the storeImage - It is a media container with additional images of the store.
      • setStoreImage

        public void setStoreImage​(SessionContext ctx,
                                  MediaContainer value)
        Generated method - Setter of the PointOfService.storeImage attribute.
        Parameters:
        value - the storeImage - It is a media container with additional images of the store.
      • setStoreImage

        public void setStoreImage​(MediaContainer value)
        Generated method - Setter of the PointOfService.storeImage attribute.
        Parameters:
        value - the storeImage - It is a media container with additional images of the store.
      • getType

        public EnumerationValue getType()
        Generated method - Getter of the PointOfService.type attribute.
        Returns:
        the type
      • setType

        public void setType​(SessionContext ctx,
                            EnumerationValue value)
        Generated method - Setter of the PointOfService.type attribute.
        Parameters:
        value - the type
      • setType

        public void setType​(EnumerationValue value)
        Generated method - Setter of the PointOfService.type attribute.
        Parameters:
        value - the type