Class GeneratedExportDataCronJob

All Implemented Interfaces:
Serializable, Comparable
Direct Known Subclasses:
ExportDataCronJob

public abstract class GeneratedExportDataCronJob extends CronJob
Generated class for type ExportDataCronJob.
See Also:
  • Field Details

  • Constructor Details

    • GeneratedExportDataCronJob

      public GeneratedExportDataCronJob()
  • Method Details

    • getDefaultAttributeModes

      protected Map<String,Item.AttributeMode> getDefaultAttributeModes()
      Overrides:
      getDefaultAttributeModes in class GeneratedCronJob
    • getBaseStore

      public BaseStore getBaseStore(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.baseStore attribute.
      Returns:
      the baseStore - The base store to run against
    • getBaseStore

      public BaseStore getBaseStore()
      Generated method - Getter of the ExportDataCronJob.baseStore attribute.
      Returns:
      the baseStore - The base store to run against
    • setBaseStore

      public void setBaseStore(SessionContext ctx, BaseStore value)
      Generated method - Setter of the ExportDataCronJob.baseStore attribute.
      Parameters:
      value - the baseStore - The base store to run against
    • setBaseStore

      public void setBaseStore(BaseStore value)
      Generated method - Setter of the ExportDataCronJob.baseStore attribute.
      Parameters:
      value - the baseStore - The base store to run against
    • getCmsSite

      public CMSSite getCmsSite(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.cmsSite attribute.
      Returns:
      the cmsSite - The cms site to run against
    • getCmsSite

      public CMSSite getCmsSite()
      Generated method - Getter of the ExportDataCronJob.cmsSite attribute.
      Returns:
      the cmsSite - The cms site to run against
    • setCmsSite

      public void setCmsSite(SessionContext ctx, CMSSite value)
      Generated method - Setter of the ExportDataCronJob.cmsSite attribute.
      Parameters:
      value - the cmsSite - The cms site to run against
    • setCmsSite

      public void setCmsSite(CMSSite value)
      Generated method - Setter of the ExportDataCronJob.cmsSite attribute.
      Parameters:
      value - the cmsSite - The cms site to run against
    • 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 CronJob
      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
    • getCurrency

      public Currency getCurrency(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.currency attribute.
      Returns:
      the currency - The currency context
    • getCurrency

      public Currency getCurrency()
      Generated method - Getter of the ExportDataCronJob.currency attribute.
      Returns:
      the currency - The currency context
    • setCurrency

      public void setCurrency(SessionContext ctx, Currency value)
      Generated method - Setter of the ExportDataCronJob.currency attribute.
      Parameters:
      value - the currency - The currency context
    • setCurrency

      public void setCurrency(Currency value)
      Generated method - Setter of the ExportDataCronJob.currency attribute.
      Parameters:
      value - the currency - The currency context
    • getDataGenerationPipeline

      public String getDataGenerationPipeline(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.dataGenerationPipeline attribute.
      Returns:
      the dataGenerationPipeline - The name of the pipeline that generates the data
    • getDataGenerationPipeline

      public String getDataGenerationPipeline()
      Generated method - Getter of the ExportDataCronJob.dataGenerationPipeline attribute.
      Returns:
      the dataGenerationPipeline - The name of the pipeline that generates the data
    • setDataGenerationPipeline

      protected void setDataGenerationPipeline(SessionContext ctx, String value)
      Generated method - Setter of the ExportDataCronJob.dataGenerationPipeline attribute.
      Parameters:
      value - the dataGenerationPipeline - The name of the pipeline that generates the data
    • setDataGenerationPipeline

      protected void setDataGenerationPipeline(String value)
      Generated method - Setter of the ExportDataCronJob.dataGenerationPipeline attribute.
      Parameters:
      value - the dataGenerationPipeline - The name of the pipeline that generates the data
    • getHistoryEntries

      public List<ExportDataHistoryEntry> getHistoryEntries(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.historyEntries attribute.
      Returns:
      the historyEntries
    • getHistoryEntries

      public List<ExportDataHistoryEntry> getHistoryEntries()
      Generated method - Getter of the ExportDataCronJob.historyEntries attribute.
      Returns:
      the historyEntries
    • setHistoryEntries

      public void setHistoryEntries(SessionContext ctx, List<ExportDataHistoryEntry> value)
      Generated method - Setter of the ExportDataCronJob.historyEntries attribute.
      Parameters:
      value - the historyEntries
    • setHistoryEntries

      public void setHistoryEntries(List<ExportDataHistoryEntry> value)
      Generated method - Setter of the ExportDataCronJob.historyEntries attribute.
      Parameters:
      value - the historyEntries
    • addToHistoryEntries

      public void addToHistoryEntries(SessionContext ctx, ExportDataHistoryEntry value)
      Generated method - Adds value to historyEntries.
      Parameters:
      value - the item to add to historyEntries
    • addToHistoryEntries

      public void addToHistoryEntries(ExportDataHistoryEntry value)
      Generated method - Adds value to historyEntries.
      Parameters:
      value - the item to add to historyEntries
    • removeFromHistoryEntries

      public void removeFromHistoryEntries(SessionContext ctx, ExportDataHistoryEntry value)
      Generated method - Removes value from historyEntries.
      Parameters:
      value - the item to remove from historyEntries
    • removeFromHistoryEntries

      public void removeFromHistoryEntries(ExportDataHistoryEntry value)
      Generated method - Removes value from historyEntries.
      Parameters:
      value - the item to remove from historyEntries
    • getLanguage

      public Language getLanguage(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.language attribute.
      Returns:
      the language - The language context
    • getLanguage

      public Language getLanguage()
      Generated method - Getter of the ExportDataCronJob.language attribute.
      Returns:
      the language - The language context
    • setLanguage

      public void setLanguage(SessionContext ctx, Language value)
      Generated method - Setter of the ExportDataCronJob.language attribute.
      Parameters:
      value - the language - The language context
    • setLanguage

      public void setLanguage(Language value)
      Generated method - Setter of the ExportDataCronJob.language attribute.
      Parameters:
      value - the language - The language context
    • getThirdPartyHost

      public String getThirdPartyHost(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.thirdPartyHost attribute.
      Returns:
      the thirdPartyHost - The location of the third party account
    • getThirdPartyHost

      public String getThirdPartyHost()
      Generated method - Getter of the ExportDataCronJob.thirdPartyHost attribute.
      Returns:
      the thirdPartyHost - The location of the third party account
    • setThirdPartyHost

      public void setThirdPartyHost(SessionContext ctx, String value)
      Generated method - Setter of the ExportDataCronJob.thirdPartyHost attribute.
      Parameters:
      value - the thirdPartyHost - The location of the third party account
    • setThirdPartyHost

      public void setThirdPartyHost(String value)
      Generated method - Setter of the ExportDataCronJob.thirdPartyHost attribute.
      Parameters:
      value - the thirdPartyHost - The location of the third party account
    • getThirdPartyPassword

      public String getThirdPartyPassword(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.thirdPartyPassword attribute.
      Returns:
      the thirdPartyPassword - The password of the third party account
    • getThirdPartyPassword

      public String getThirdPartyPassword()
      Generated method - Getter of the ExportDataCronJob.thirdPartyPassword attribute.
      Returns:
      the thirdPartyPassword - The password of the third party account
    • setThirdPartyPassword

      public void setThirdPartyPassword(SessionContext ctx, String value)
      Generated method - Setter of the ExportDataCronJob.thirdPartyPassword attribute.
      Parameters:
      value - the thirdPartyPassword - The password of the third party account
    • setThirdPartyPassword

      public void setThirdPartyPassword(String value)
      Generated method - Setter of the ExportDataCronJob.thirdPartyPassword attribute.
      Parameters:
      value - the thirdPartyPassword - The password of the third party account
    • getThirdPartyUsername

      public String getThirdPartyUsername(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.thirdPartyUsername attribute.
      Returns:
      the thirdPartyUsername - The username of the third party account
    • getThirdPartyUsername

      public String getThirdPartyUsername()
      Generated method - Getter of the ExportDataCronJob.thirdPartyUsername attribute.
      Returns:
      the thirdPartyUsername - The username of the third party account
    • setThirdPartyUsername

      public void setThirdPartyUsername(SessionContext ctx, String value)
      Generated method - Setter of the ExportDataCronJob.thirdPartyUsername attribute.
      Parameters:
      value - the thirdPartyUsername - The username of the third party account
    • setThirdPartyUsername

      public void setThirdPartyUsername(String value)
      Generated method - Setter of the ExportDataCronJob.thirdPartyUsername attribute.
      Parameters:
      value - the thirdPartyUsername - The username of the third party account
    • getUser

      public User getUser(SessionContext ctx)
      Generated method - Getter of the ExportDataCronJob.user attribute.
      Returns:
      the user - The user to set the export context to
    • getUser

      public User getUser()
      Generated method - Getter of the ExportDataCronJob.user attribute.
      Returns:
      the user - The user to set the export context to
    • setUser

      public void setUser(SessionContext ctx, User value)
      Generated method - Setter of the ExportDataCronJob.user attribute.
      Parameters:
      value - the user - The user to set the export context to
    • setUser

      public void setUser(User value)
      Generated method - Setter of the ExportDataCronJob.user attribute.
      Parameters:
      value - the user - The user to set the export context to