Class GeneratedImpExImportCronJob

    • Field Detail

      • JOBMEDIA

        public static final java.lang.String JOBMEDIA
        Qualifier of the ImpExImportCronJob.jobMedia attribute
        See Also:
        Constant Field Values
      • WORKMEDIA

        public static final java.lang.String WORKMEDIA
        Qualifier of the ImpExImportCronJob.workMedia attribute
        See Also:
        Constant Field Values
      • LASTSUCCESSFULLINE

        public static final java.lang.String LASTSUCCESSFULLINE
        Qualifier of the ImpExImportCronJob.lastSuccessfulLine attribute
        See Also:
        Constant Field Values
      • MEDIASMEDIA

        public static final java.lang.String MEDIASMEDIA
        Qualifier of the ImpExImportCronJob.mediasMedia attribute
        See Also:
        Constant Field Values
      • EXTERNALDATACOLLECTION

        public static final java.lang.String EXTERNALDATACOLLECTION
        Qualifier of the ImpExImportCronJob.externalDataCollection attribute
        See Also:
        Constant Field Values
      • LOCALE

        public static final java.lang.String LOCALE
        Qualifier of the ImpExImportCronJob.locale attribute
        See Also:
        Constant Field Values
      • DUMPFILEENCODING

        public static final java.lang.String DUMPFILEENCODING
        Qualifier of the ImpExImportCronJob.dumpFileEncoding attribute
        See Also:
        Constant Field Values
      • ENABLECODEEXECUTION

        public static final java.lang.String ENABLECODEEXECUTION
        Qualifier of the ImpExImportCronJob.enableCodeExecution attribute
        See Also:
        Constant Field Values
      • ENABLEEXTERNALCODEEXECUTION

        public static final java.lang.String ENABLEEXTERNALCODEEXECUTION
        Qualifier of the ImpExImportCronJob.enableExternalCodeExecution attribute
        See Also:
        Constant Field Values
      • ENABLEEXTERNALSYNTAXPARSING

        public static final java.lang.String ENABLEEXTERNALSYNTAXPARSING
        Qualifier of the ImpExImportCronJob.enableExternalSyntaxParsing attribute
        See Also:
        Constant Field Values
      • ENABLEHMCSAVEDVALUES

        public static final java.lang.String ENABLEHMCSAVEDVALUES
        Qualifier of the ImpExImportCronJob.enableHmcSavedValues attribute
        See Also:
        Constant Field Values
      • MEDIASTARGET

        public static final java.lang.String MEDIASTARGET
        Qualifier of the ImpExImportCronJob.mediasTarget attribute
        See Also:
        Constant Field Values
      • VALUECOUNT

        public static final java.lang.String VALUECOUNT
        Qualifier of the ImpExImportCronJob.valueCount attribute
        See Also:
        Constant Field Values
      • UNRESOLVEDDATASTORE

        public static final java.lang.String UNRESOLVEDDATASTORE
        Qualifier of the ImpExImportCronJob.unresolvedDataStore attribute
        See Also:
        Constant Field Values
      • ZIPENTRY

        public static final java.lang.String ZIPENTRY
        Qualifier of the ImpExImportCronJob.zipentry attribute
        See Also:
        Constant Field Values
      • MODE

        public static final java.lang.String MODE
        Qualifier of the ImpExImportCronJob.mode attribute
        See Also:
        Constant Field Values
      • DUMPINGALLOWED

        public static final java.lang.String DUMPINGALLOWED
        Qualifier of the ImpExImportCronJob.dumpingAllowed attribute
        See Also:
        Constant Field Values
      • UNZIPMEDIASMEDIA

        public static final java.lang.String UNZIPMEDIASMEDIA
        Qualifier of the ImpExImportCronJob.unzipMediasMedia attribute
        See Also:
        Constant Field Values
      • MAXTHREADS

        public static final java.lang.String MAXTHREADS
        Qualifier of the ImpExImportCronJob.maxThreads attribute
        See Also:
        Constant Field Values
      • LEGACYMODE

        public static final java.lang.String LEGACYMODE
        Qualifier of the ImpExImportCronJob.legacyMode 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

      • GeneratedImpExImportCronJob

        public GeneratedImpExImportCronJob()
    • 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 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
      • getDumpFileEncoding

        public EnumerationValue getDumpFileEncoding​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.dumpFileEncoding attribute.
        Returns:
        the dumpFileEncoding
      • getDumpFileEncoding

        public EnumerationValue getDumpFileEncoding()
        Generated method - Getter of the ImpExImportCronJob.dumpFileEncoding attribute.
        Returns:
        the dumpFileEncoding
      • setDumpFileEncoding

        public void setDumpFileEncoding​(SessionContext ctx,
                                        EnumerationValue value)
        Generated method - Setter of the ImpExImportCronJob.dumpFileEncoding attribute.
        Parameters:
        value - the dumpFileEncoding
      • setDumpFileEncoding

        public void setDumpFileEncoding​(EnumerationValue value)
        Generated method - Setter of the ImpExImportCronJob.dumpFileEncoding attribute.
        Parameters:
        value - the dumpFileEncoding
      • isDumpingAllowed

        public java.lang.Boolean isDumpingAllowed​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.dumpingAllowed attribute.
        Returns:
        the dumpingAllowed
      • isDumpingAllowed

        public java.lang.Boolean isDumpingAllowed()
        Generated method - Getter of the ImpExImportCronJob.dumpingAllowed attribute.
        Returns:
        the dumpingAllowed
      • isDumpingAllowedAsPrimitive

        public boolean isDumpingAllowedAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.dumpingAllowed attribute.
        Returns:
        the dumpingAllowed
      • isDumpingAllowedAsPrimitive

        public boolean isDumpingAllowedAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.dumpingAllowed attribute.
        Returns:
        the dumpingAllowed
      • setDumpingAllowed

        public void setDumpingAllowed​(SessionContext ctx,
                                      java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.dumpingAllowed attribute.
        Parameters:
        value - the dumpingAllowed
      • setDumpingAllowed

        public void setDumpingAllowed​(java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.dumpingAllowed attribute.
        Parameters:
        value - the dumpingAllowed
      • setDumpingAllowed

        public void setDumpingAllowed​(SessionContext ctx,
                                      boolean value)
        Generated method - Setter of the ImpExImportCronJob.dumpingAllowed attribute.
        Parameters:
        value - the dumpingAllowed
      • setDumpingAllowed

        public void setDumpingAllowed​(boolean value)
        Generated method - Setter of the ImpExImportCronJob.dumpingAllowed attribute.
        Parameters:
        value - the dumpingAllowed
      • isEnableCodeExecution

        public java.lang.Boolean isEnableCodeExecution​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.enableCodeExecution attribute.
        Returns:
        the enableCodeExecution
      • isEnableCodeExecution

        public java.lang.Boolean isEnableCodeExecution()
        Generated method - Getter of the ImpExImportCronJob.enableCodeExecution attribute.
        Returns:
        the enableCodeExecution
      • isEnableCodeExecutionAsPrimitive

        public boolean isEnableCodeExecutionAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.enableCodeExecution attribute.
        Returns:
        the enableCodeExecution
      • isEnableCodeExecutionAsPrimitive

        public boolean isEnableCodeExecutionAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.enableCodeExecution attribute.
        Returns:
        the enableCodeExecution
      • setEnableCodeExecution

        public void setEnableCodeExecution​(SessionContext ctx,
                                           java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableCodeExecution attribute.
        Parameters:
        value - the enableCodeExecution
      • setEnableCodeExecution

        public void setEnableCodeExecution​(java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableCodeExecution attribute.
        Parameters:
        value - the enableCodeExecution
      • setEnableCodeExecution

        public void setEnableCodeExecution​(SessionContext ctx,
                                           boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableCodeExecution attribute.
        Parameters:
        value - the enableCodeExecution
      • setEnableCodeExecution

        public void setEnableCodeExecution​(boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableCodeExecution attribute.
        Parameters:
        value - the enableCodeExecution
      • isEnableExternalCodeExecution

        public java.lang.Boolean isEnableExternalCodeExecution​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.enableExternalCodeExecution attribute.
        Returns:
        the enableExternalCodeExecution
      • isEnableExternalCodeExecution

        public java.lang.Boolean isEnableExternalCodeExecution()
        Generated method - Getter of the ImpExImportCronJob.enableExternalCodeExecution attribute.
        Returns:
        the enableExternalCodeExecution
      • isEnableExternalCodeExecutionAsPrimitive

        public boolean isEnableExternalCodeExecutionAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.enableExternalCodeExecution attribute.
        Returns:
        the enableExternalCodeExecution
      • isEnableExternalCodeExecutionAsPrimitive

        public boolean isEnableExternalCodeExecutionAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.enableExternalCodeExecution attribute.
        Returns:
        the enableExternalCodeExecution
      • setEnableExternalCodeExecution

        public void setEnableExternalCodeExecution​(SessionContext ctx,
                                                   java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableExternalCodeExecution attribute.
        Parameters:
        value - the enableExternalCodeExecution
      • setEnableExternalCodeExecution

        public void setEnableExternalCodeExecution​(java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableExternalCodeExecution attribute.
        Parameters:
        value - the enableExternalCodeExecution
      • setEnableExternalCodeExecution

        public void setEnableExternalCodeExecution​(SessionContext ctx,
                                                   boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableExternalCodeExecution attribute.
        Parameters:
        value - the enableExternalCodeExecution
      • setEnableExternalCodeExecution

        public void setEnableExternalCodeExecution​(boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableExternalCodeExecution attribute.
        Parameters:
        value - the enableExternalCodeExecution
      • isEnableExternalSyntaxParsing

        public java.lang.Boolean isEnableExternalSyntaxParsing​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.enableExternalSyntaxParsing attribute.
        Returns:
        the enableExternalSyntaxParsing
      • isEnableExternalSyntaxParsing

        public java.lang.Boolean isEnableExternalSyntaxParsing()
        Generated method - Getter of the ImpExImportCronJob.enableExternalSyntaxParsing attribute.
        Returns:
        the enableExternalSyntaxParsing
      • isEnableExternalSyntaxParsingAsPrimitive

        public boolean isEnableExternalSyntaxParsingAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.enableExternalSyntaxParsing attribute.
        Returns:
        the enableExternalSyntaxParsing
      • isEnableExternalSyntaxParsingAsPrimitive

        public boolean isEnableExternalSyntaxParsingAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.enableExternalSyntaxParsing attribute.
        Returns:
        the enableExternalSyntaxParsing
      • setEnableExternalSyntaxParsing

        public void setEnableExternalSyntaxParsing​(SessionContext ctx,
                                                   java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableExternalSyntaxParsing attribute.
        Parameters:
        value - the enableExternalSyntaxParsing
      • setEnableExternalSyntaxParsing

        public void setEnableExternalSyntaxParsing​(java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableExternalSyntaxParsing attribute.
        Parameters:
        value - the enableExternalSyntaxParsing
      • setEnableExternalSyntaxParsing

        public void setEnableExternalSyntaxParsing​(SessionContext ctx,
                                                   boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableExternalSyntaxParsing attribute.
        Parameters:
        value - the enableExternalSyntaxParsing
      • setEnableExternalSyntaxParsing

        public void setEnableExternalSyntaxParsing​(boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableExternalSyntaxParsing attribute.
        Parameters:
        value - the enableExternalSyntaxParsing
      • isEnableHmcSavedValues

        public java.lang.Boolean isEnableHmcSavedValues​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.enableHmcSavedValues attribute.
        Returns:
        the enableHmcSavedValues
      • isEnableHmcSavedValues

        public java.lang.Boolean isEnableHmcSavedValues()
        Generated method - Getter of the ImpExImportCronJob.enableHmcSavedValues attribute.
        Returns:
        the enableHmcSavedValues
      • isEnableHmcSavedValuesAsPrimitive

        public boolean isEnableHmcSavedValuesAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.enableHmcSavedValues attribute.
        Returns:
        the enableHmcSavedValues
      • isEnableHmcSavedValuesAsPrimitive

        public boolean isEnableHmcSavedValuesAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.enableHmcSavedValues attribute.
        Returns:
        the enableHmcSavedValues
      • setEnableHmcSavedValues

        public void setEnableHmcSavedValues​(SessionContext ctx,
                                            java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableHmcSavedValues attribute.
        Parameters:
        value - the enableHmcSavedValues
      • setEnableHmcSavedValues

        public void setEnableHmcSavedValues​(java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableHmcSavedValues attribute.
        Parameters:
        value - the enableHmcSavedValues
      • setEnableHmcSavedValues

        public void setEnableHmcSavedValues​(SessionContext ctx,
                                            boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableHmcSavedValues attribute.
        Parameters:
        value - the enableHmcSavedValues
      • setEnableHmcSavedValues

        public void setEnableHmcSavedValues​(boolean value)
        Generated method - Setter of the ImpExImportCronJob.enableHmcSavedValues attribute.
        Parameters:
        value - the enableHmcSavedValues
      • getExternalDataCollection

        public java.util.Collection<ImpExMedia> getExternalDataCollection​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.externalDataCollection attribute.
        Returns:
        the externalDataCollection
      • getExternalDataCollection

        public java.util.Collection<ImpExMedia> getExternalDataCollection()
        Generated method - Getter of the ImpExImportCronJob.externalDataCollection attribute.
        Returns:
        the externalDataCollection
      • setExternalDataCollection

        public void setExternalDataCollection​(SessionContext ctx,
                                              java.util.Collection<ImpExMedia> value)
        Generated method - Setter of the ImpExImportCronJob.externalDataCollection attribute.
        Parameters:
        value - the externalDataCollection
      • setExternalDataCollection

        public void setExternalDataCollection​(java.util.Collection<ImpExMedia> value)
        Generated method - Setter of the ImpExImportCronJob.externalDataCollection attribute.
        Parameters:
        value - the externalDataCollection
      • getJobMedia

        public ImpExMedia getJobMedia​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.jobMedia attribute.
        Returns:
        the jobMedia
      • getJobMedia

        public ImpExMedia getJobMedia()
        Generated method - Getter of the ImpExImportCronJob.jobMedia attribute.
        Returns:
        the jobMedia
      • setJobMedia

        public void setJobMedia​(SessionContext ctx,
                                ImpExMedia value)
        Generated method - Setter of the ImpExImportCronJob.jobMedia attribute.
        Parameters:
        value - the jobMedia
      • setJobMedia

        public void setJobMedia​(ImpExMedia value)
        Generated method - Setter of the ImpExImportCronJob.jobMedia attribute.
        Parameters:
        value - the jobMedia
      • getLastSuccessfulLine

        public java.lang.Integer getLastSuccessfulLine​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.lastSuccessfulLine attribute.
        Returns:
        the lastSuccessfulLine
      • getLastSuccessfulLine

        public java.lang.Integer getLastSuccessfulLine()
        Generated method - Getter of the ImpExImportCronJob.lastSuccessfulLine attribute.
        Returns:
        the lastSuccessfulLine
      • getLastSuccessfulLineAsPrimitive

        public int getLastSuccessfulLineAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.lastSuccessfulLine attribute.
        Returns:
        the lastSuccessfulLine
      • getLastSuccessfulLineAsPrimitive

        public int getLastSuccessfulLineAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.lastSuccessfulLine attribute.
        Returns:
        the lastSuccessfulLine
      • setLastSuccessfulLine

        public void setLastSuccessfulLine​(SessionContext ctx,
                                          java.lang.Integer value)
        Generated method - Setter of the ImpExImportCronJob.lastSuccessfulLine attribute.
        Parameters:
        value - the lastSuccessfulLine
      • setLastSuccessfulLine

        public void setLastSuccessfulLine​(java.lang.Integer value)
        Generated method - Setter of the ImpExImportCronJob.lastSuccessfulLine attribute.
        Parameters:
        value - the lastSuccessfulLine
      • setLastSuccessfulLine

        public void setLastSuccessfulLine​(SessionContext ctx,
                                          int value)
        Generated method - Setter of the ImpExImportCronJob.lastSuccessfulLine attribute.
        Parameters:
        value - the lastSuccessfulLine
      • setLastSuccessfulLine

        public void setLastSuccessfulLine​(int value)
        Generated method - Setter of the ImpExImportCronJob.lastSuccessfulLine attribute.
        Parameters:
        value - the lastSuccessfulLine
      • isLegacyMode

        public java.lang.Boolean isLegacyMode​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.legacyMode attribute.
        Returns:
        the legacyMode
      • isLegacyMode

        public java.lang.Boolean isLegacyMode()
        Generated method - Getter of the ImpExImportCronJob.legacyMode attribute.
        Returns:
        the legacyMode
      • isLegacyModeAsPrimitive

        public boolean isLegacyModeAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.legacyMode attribute.
        Returns:
        the legacyMode
      • isLegacyModeAsPrimitive

        public boolean isLegacyModeAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.legacyMode attribute.
        Returns:
        the legacyMode
      • setLegacyMode

        public void setLegacyMode​(SessionContext ctx,
                                  java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.legacyMode attribute.
        Parameters:
        value - the legacyMode
      • setLegacyMode

        public void setLegacyMode​(java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.legacyMode attribute.
        Parameters:
        value - the legacyMode
      • setLegacyMode

        public void setLegacyMode​(SessionContext ctx,
                                  boolean value)
        Generated method - Setter of the ImpExImportCronJob.legacyMode attribute.
        Parameters:
        value - the legacyMode
      • setLegacyMode

        public void setLegacyMode​(boolean value)
        Generated method - Setter of the ImpExImportCronJob.legacyMode attribute.
        Parameters:
        value - the legacyMode
      • getLocale

        public java.lang.String getLocale​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.locale attribute.
        Returns:
        the locale
      • getLocale

        public java.lang.String getLocale()
        Generated method - Getter of the ImpExImportCronJob.locale attribute.
        Returns:
        the locale
      • setLocale

        public void setLocale​(SessionContext ctx,
                              java.lang.String value)
        Generated method - Setter of the ImpExImportCronJob.locale attribute.
        Parameters:
        value - the locale
      • setLocale

        public void setLocale​(java.lang.String value)
        Generated method - Setter of the ImpExImportCronJob.locale attribute.
        Parameters:
        value - the locale
      • getMaxThreads

        public java.lang.Integer getMaxThreads​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.maxThreads attribute.
        Returns:
        the maxThreads
      • getMaxThreads

        public java.lang.Integer getMaxThreads()
        Generated method - Getter of the ImpExImportCronJob.maxThreads attribute.
        Returns:
        the maxThreads
      • getMaxThreadsAsPrimitive

        public int getMaxThreadsAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.maxThreads attribute.
        Returns:
        the maxThreads
      • getMaxThreadsAsPrimitive

        public int getMaxThreadsAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.maxThreads attribute.
        Returns:
        the maxThreads
      • setMaxThreads

        public void setMaxThreads​(SessionContext ctx,
                                  java.lang.Integer value)
        Generated method - Setter of the ImpExImportCronJob.maxThreads attribute.
        Parameters:
        value - the maxThreads
      • setMaxThreads

        public void setMaxThreads​(java.lang.Integer value)
        Generated method - Setter of the ImpExImportCronJob.maxThreads attribute.
        Parameters:
        value - the maxThreads
      • setMaxThreads

        public void setMaxThreads​(SessionContext ctx,
                                  int value)
        Generated method - Setter of the ImpExImportCronJob.maxThreads attribute.
        Parameters:
        value - the maxThreads
      • setMaxThreads

        public void setMaxThreads​(int value)
        Generated method - Setter of the ImpExImportCronJob.maxThreads attribute.
        Parameters:
        value - the maxThreads
      • getMediasMedia

        public Media getMediasMedia​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.mediasMedia attribute.
        Returns:
        the mediasMedia
      • getMediasMedia

        public Media getMediasMedia()
        Generated method - Getter of the ImpExImportCronJob.mediasMedia attribute.
        Returns:
        the mediasMedia
      • setMediasMedia

        public void setMediasMedia​(SessionContext ctx,
                                   Media value)
        Generated method - Setter of the ImpExImportCronJob.mediasMedia attribute.
        Parameters:
        value - the mediasMedia
      • setMediasMedia

        public void setMediasMedia​(Media value)
        Generated method - Setter of the ImpExImportCronJob.mediasMedia attribute.
        Parameters:
        value - the mediasMedia
      • getMediasTarget

        public java.lang.String getMediasTarget​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.mediasTarget attribute.
        Returns:
        the mediasTarget
      • getMediasTarget

        public java.lang.String getMediasTarget()
        Generated method - Getter of the ImpExImportCronJob.mediasTarget attribute.
        Returns:
        the mediasTarget
      • setMediasTarget

        public void setMediasTarget​(SessionContext ctx,
                                    java.lang.String value)
        Generated method - Setter of the ImpExImportCronJob.mediasTarget attribute.
        Parameters:
        value - the mediasTarget
      • setMediasTarget

        public void setMediasTarget​(java.lang.String value)
        Generated method - Setter of the ImpExImportCronJob.mediasTarget attribute.
        Parameters:
        value - the mediasTarget
      • getMode

        public EnumerationValue getMode​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.mode attribute.
        Returns:
        the mode
      • getMode

        public EnumerationValue getMode()
        Generated method - Getter of the ImpExImportCronJob.mode attribute.
        Returns:
        the mode
      • setMode

        public void setMode​(SessionContext ctx,
                            EnumerationValue value)
        Generated method - Setter of the ImpExImportCronJob.mode attribute.
        Parameters:
        value - the mode
      • setMode

        public void setMode​(EnumerationValue value)
        Generated method - Setter of the ImpExImportCronJob.mode attribute.
        Parameters:
        value - the mode
      • getUnresolvedDataStore

        public ImpExMedia getUnresolvedDataStore​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.unresolvedDataStore attribute.
        Returns:
        the unresolvedDataStore
      • getUnresolvedDataStore

        public ImpExMedia getUnresolvedDataStore()
        Generated method - Getter of the ImpExImportCronJob.unresolvedDataStore attribute.
        Returns:
        the unresolvedDataStore
      • setUnresolvedDataStore

        public void setUnresolvedDataStore​(SessionContext ctx,
                                           ImpExMedia value)
        Generated method - Setter of the ImpExImportCronJob.unresolvedDataStore attribute.
        Parameters:
        value - the unresolvedDataStore
      • setUnresolvedDataStore

        public void setUnresolvedDataStore​(ImpExMedia value)
        Generated method - Setter of the ImpExImportCronJob.unresolvedDataStore attribute.
        Parameters:
        value - the unresolvedDataStore
      • isUnzipMediasMedia

        public java.lang.Boolean isUnzipMediasMedia​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.unzipMediasMedia attribute.
        Returns:
        the unzipMediasMedia
      • isUnzipMediasMedia

        public java.lang.Boolean isUnzipMediasMedia()
        Generated method - Getter of the ImpExImportCronJob.unzipMediasMedia attribute.
        Returns:
        the unzipMediasMedia
      • isUnzipMediasMediaAsPrimitive

        public boolean isUnzipMediasMediaAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.unzipMediasMedia attribute.
        Returns:
        the unzipMediasMedia
      • isUnzipMediasMediaAsPrimitive

        public boolean isUnzipMediasMediaAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.unzipMediasMedia attribute.
        Returns:
        the unzipMediasMedia
      • setUnzipMediasMedia

        public void setUnzipMediasMedia​(SessionContext ctx,
                                        java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.unzipMediasMedia attribute.
        Parameters:
        value - the unzipMediasMedia
      • setUnzipMediasMedia

        public void setUnzipMediasMedia​(java.lang.Boolean value)
        Generated method - Setter of the ImpExImportCronJob.unzipMediasMedia attribute.
        Parameters:
        value - the unzipMediasMedia
      • setUnzipMediasMedia

        public void setUnzipMediasMedia​(SessionContext ctx,
                                        boolean value)
        Generated method - Setter of the ImpExImportCronJob.unzipMediasMedia attribute.
        Parameters:
        value - the unzipMediasMedia
      • setUnzipMediasMedia

        public void setUnzipMediasMedia​(boolean value)
        Generated method - Setter of the ImpExImportCronJob.unzipMediasMedia attribute.
        Parameters:
        value - the unzipMediasMedia
      • getValueCount

        public java.lang.Integer getValueCount​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.valueCount attribute.
        Returns:
        the valueCount
      • getValueCount

        public java.lang.Integer getValueCount()
        Generated method - Getter of the ImpExImportCronJob.valueCount attribute.
        Returns:
        the valueCount
      • getValueCountAsPrimitive

        public int getValueCountAsPrimitive​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.valueCount attribute.
        Returns:
        the valueCount
      • getValueCountAsPrimitive

        public int getValueCountAsPrimitive()
        Generated method - Getter of the ImpExImportCronJob.valueCount attribute.
        Returns:
        the valueCount
      • setValueCount

        public void setValueCount​(SessionContext ctx,
                                  java.lang.Integer value)
        Generated method - Setter of the ImpExImportCronJob.valueCount attribute.
        Parameters:
        value - the valueCount
      • setValueCount

        public void setValueCount​(java.lang.Integer value)
        Generated method - Setter of the ImpExImportCronJob.valueCount attribute.
        Parameters:
        value - the valueCount
      • setValueCount

        public void setValueCount​(SessionContext ctx,
                                  int value)
        Generated method - Setter of the ImpExImportCronJob.valueCount attribute.
        Parameters:
        value - the valueCount
      • setValueCount

        public void setValueCount​(int value)
        Generated method - Setter of the ImpExImportCronJob.valueCount attribute.
        Parameters:
        value - the valueCount
      • getWorkMedia

        public ImpExMedia getWorkMedia​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.workMedia attribute.
        Returns:
        the workMedia
      • getWorkMedia

        public ImpExMedia getWorkMedia()
        Generated method - Getter of the ImpExImportCronJob.workMedia attribute.
        Returns:
        the workMedia
      • setWorkMedia

        public void setWorkMedia​(SessionContext ctx,
                                 ImpExMedia value)
        Generated method - Setter of the ImpExImportCronJob.workMedia attribute.
        Parameters:
        value - the workMedia
      • setWorkMedia

        public void setWorkMedia​(ImpExMedia value)
        Generated method - Setter of the ImpExImportCronJob.workMedia attribute.
        Parameters:
        value - the workMedia
      • getZipentry

        public abstract java.lang.String getZipentry​(SessionContext ctx)
        Generated method - Getter of the ImpExImportCronJob.zipentry attribute.
        Returns:
        the zipentry
      • getZipentry

        public java.lang.String getZipentry()
        Generated method - Getter of the ImpExImportCronJob.zipentry attribute.
        Returns:
        the zipentry
      • setZipentry

        public abstract void setZipentry​(SessionContext ctx,
                                         java.lang.String value)
        Generated method - Setter of the ImpExImportCronJob.zipentry attribute.
        Parameters:
        value - the zipentry
      • setZipentry

        public void setZipentry​(java.lang.String value)
        Generated method - Setter of the ImpExImportCronJob.zipentry attribute.
        Parameters:
        value - the zipentry