Class GeneratedBarcodeMedia

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable
    Direct Known Subclasses:
    BarcodeMedia

    public abstract class GeneratedBarcodeMedia
    extends Media
    Generated class for type BarcodeMedia.
    See Also:
    Serialized Form
    • Field Detail

      • BARCODETEXT

        public static final java.lang.String BARCODETEXT
        Qualifier of the BarcodeMedia.barcodeText attribute
        See Also:
        Constant Field Values
      • BARCODETYPE

        public static final java.lang.String BARCODETYPE
        Qualifier of the BarcodeMedia.barcodeType attribute
        See Also:
        Constant Field Values
      • CONTEXTITEM

        public static final java.lang.String CONTEXTITEM
        Qualifier of the BarcodeMedia.contextItem attribute
        See Also:
        Constant Field Values
      • DEEPLINKURL

        public static final java.lang.String DEEPLINKURL
        Qualifier of the BarcodeMedia.deeplinkUrl 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

      • GeneratedBarcodeMedia

        public GeneratedBarcodeMedia()
    • Method Detail

      • getBarcodeText

        public java.lang.String getBarcodeText​(SessionContext ctx)
        Generated method - Getter of the BarcodeMedia.barcodeText attribute.
        Returns:
        the barcodeText
      • getBarcodeText

        public java.lang.String getBarcodeText()
        Generated method - Getter of the BarcodeMedia.barcodeText attribute.
        Returns:
        the barcodeText
      • setBarcodeText

        public void setBarcodeText​(SessionContext ctx,
                                   java.lang.String value)
        Generated method - Setter of the BarcodeMedia.barcodeText attribute.
        Parameters:
        value - the barcodeText
      • setBarcodeText

        public void setBarcodeText​(java.lang.String value)
        Generated method - Setter of the BarcodeMedia.barcodeText attribute.
        Parameters:
        value - the barcodeText
      • getBarcodeType

        public EnumerationValue getBarcodeType​(SessionContext ctx)
        Generated method - Getter of the BarcodeMedia.barcodeType attribute.
        Returns:
        the barcodeType
      • getBarcodeType

        public EnumerationValue getBarcodeType()
        Generated method - Getter of the BarcodeMedia.barcodeType attribute.
        Returns:
        the barcodeType
      • setBarcodeType

        public void setBarcodeType​(SessionContext ctx,
                                   EnumerationValue value)
        Generated method - Setter of the BarcodeMedia.barcodeType attribute.
        Parameters:
        value - the barcodeType
      • setBarcodeType

        public void setBarcodeType​(EnumerationValue value)
        Generated method - Setter of the BarcodeMedia.barcodeType attribute.
        Parameters:
        value - the barcodeType
      • getContextItem

        public Item getContextItem​(SessionContext ctx)
        Generated method - Getter of the BarcodeMedia.contextItem attribute.
        Returns:
        the contextItem
      • getContextItem

        public Item getContextItem()
        Generated method - Getter of the BarcodeMedia.contextItem attribute.
        Returns:
        the contextItem
      • setContextItem

        public void setContextItem​(SessionContext ctx,
                                   Item value)
        Generated method - Setter of the BarcodeMedia.contextItem attribute.
        Parameters:
        value - the contextItem
      • setContextItem

        public void setContextItem​(Item value)
        Generated method - Setter of the BarcodeMedia.contextItem attribute.
        Parameters:
        value - the contextItem
      • 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 Media
        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
      • getDeeplinkUrl

        public DeeplinkUrl getDeeplinkUrl​(SessionContext ctx)
        Generated method - Getter of the BarcodeMedia.deeplinkUrl attribute.
        Returns:
        the deeplinkUrl
      • getDeeplinkUrl

        public DeeplinkUrl getDeeplinkUrl()
        Generated method - Getter of the BarcodeMedia.deeplinkUrl attribute.
        Returns:
        the deeplinkUrl
      • setDeeplinkUrl

        public void setDeeplinkUrl​(SessionContext ctx,
                                   DeeplinkUrl value)
        Generated method - Setter of the BarcodeMedia.deeplinkUrl attribute.
        Parameters:
        value - the deeplinkUrl
      • setDeeplinkUrl

        public void setDeeplinkUrl​(DeeplinkUrl value)
        Generated method - Setter of the BarcodeMedia.deeplinkUrl attribute.
        Parameters:
        value - the deeplinkUrl