Class GeneratedSyncItemJob

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

public abstract class GeneratedSyncItemJob extends Job
Generated class for type SyncItemJob.
See Also:
  • Field Details

    • EXCLUSIVEMODE

      public static final String EXCLUSIVEMODE
      Qualifier of the SyncItemJob.exclusiveMode attribute
      See Also:
    • SYNCPRINCIPALSONLY

      public static final String SYNCPRINCIPALSONLY
      Qualifier of the SyncItemJob.syncPrincipalsOnly attribute
      See Also:
    • CREATENEWITEMS

      public static final String CREATENEWITEMS
      Qualifier of the SyncItemJob.createNewItems attribute
      See Also:
    • REMOVEMISSINGITEMS

      public static final String REMOVEMISSINGITEMS
      Qualifier of the SyncItemJob.removeMissingItems attribute
      See Also:
    • EXECUTIONS

      public static final String EXECUTIONS
      Qualifier of the SyncItemJob.executions attribute
      See Also:
    • SYNCORDER

      public static final String SYNCORDER
      Qualifier of the SyncItemJob.syncOrder attribute
      See Also:
    • EXPORTATTRIBUTEDESCRIPTORS

      public static final String EXPORTATTRIBUTEDESCRIPTORS
      Qualifier of the SyncItemJob.exportAttributeDescriptors attribute
      See Also:
    • SYNCATTRIBUTECONFIGURATIONS

      public static final String SYNCATTRIBUTECONFIGURATIONS
      Qualifier of the SyncItemJob.syncAttributeConfigurations attribute
      See Also:
    • EFFECTIVESYNCLANGUAGES

      public static final String EFFECTIVESYNCLANGUAGES
      Qualifier of the SyncItemJob.effectiveSyncLanguages attribute
      See Also:
    • SOURCEVERSION

      public static final String SOURCEVERSION
      Qualifier of the SyncItemJob.sourceVersion attribute
      See Also:
    • TARGETVERSION

      public static final String TARGETVERSION
      Qualifier of the SyncItemJob.targetVersion attribute
      See Also:
    • ROOTTYPES

      public static final String ROOTTYPES
      Qualifier of the SyncItemJob.rootTypes attribute
      See Also:
    • SYNCJOB2TYPEREL_SRC_ORDERED

      protected static String SYNCJOB2TYPEREL_SRC_ORDERED
      Relation ordering override parameter constants for SyncJob2TypeRel from ((catalog))
    • SYNCJOB2TYPEREL_TGT_ORDERED

      protected static String SYNCJOB2TYPEREL_TGT_ORDERED
    • SYNCJOB2TYPEREL_MARKMODIFIED

      protected static String SYNCJOB2TYPEREL_MARKMODIFIED
      Relation disable markmodifed parameter constants for SyncJob2TypeRel from ((catalog))
    • SYNCLANGUAGES

      public static final String SYNCLANGUAGES
      Qualifier of the SyncItemJob.syncLanguages attribute
      See Also:
    • SYNCJOB2LANGREL_SRC_ORDERED

      protected static String SYNCJOB2LANGREL_SRC_ORDERED
      Relation ordering override parameter constants for SyncJob2LangRel from ((catalog))
    • SYNCJOB2LANGREL_TGT_ORDERED

      protected static String SYNCJOB2LANGREL_TGT_ORDERED
    • SYNCJOB2LANGREL_MARKMODIFIED

      protected static String SYNCJOB2LANGREL_MARKMODIFIED
      Relation disable markmodifed parameter constants for SyncJob2LangRel from ((catalog))
    • SYNCPRINCIPALS

      public static final String SYNCPRINCIPALS
      Qualifier of the SyncItemJob.syncPrincipals attribute
      See Also:
    • SYNCITEMJOB2PRINCIPAL_SRC_ORDERED

      protected static String SYNCITEMJOB2PRINCIPAL_SRC_ORDERED
      Relation ordering override parameter constants for SyncItemJob2Principal from ((catalog))
    • SYNCITEMJOB2PRINCIPAL_TGT_ORDERED

      protected static String SYNCITEMJOB2PRINCIPAL_TGT_ORDERED
    • SYNCITEMJOB2PRINCIPAL_MARKMODIFIED

      protected static String SYNCITEMJOB2PRINCIPAL_MARKMODIFIED
      Relation disable markmodifed parameter constants for SyncItemJob2Principal from ((catalog))
    • SOURCEVERSIONHANDLER

      protected static final BidirectionalOneToManyHandler<GeneratedSyncItemJob> SOURCEVERSIONHANDLER
      BidirectionalOneToManyHandler for handling 1:n SOURCEVERSION's relation attributes from 'one' side.
    • TARGETVERSIONHANDLER

      protected static final BidirectionalOneToManyHandler<GeneratedSyncItemJob> TARGETVERSIONHANDLER
      BidirectionalOneToManyHandler for handling 1:n TARGETVERSION's relation attributes from 'one' side.
    • DEFAULT_INITIAL_ATTRIBUTES

      protected static final Map<String,Item.AttributeMode> DEFAULT_INITIAL_ATTRIBUTES
  • Constructor Details

    • GeneratedSyncItemJob

      public GeneratedSyncItemJob()
  • Method Details

    • getDefaultAttributeModes

      protected Map<String,Item.AttributeMode> getDefaultAttributeModes()
      Overrides:
      getDefaultAttributeModes in class GeneratedJob
    • 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 Job
      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
    • isCreateNewItems

      public Boolean isCreateNewItems(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.createNewItems attribute.
      Returns:
      the createNewItems
    • isCreateNewItems

      public Boolean isCreateNewItems()
      Generated method - Getter of the SyncItemJob.createNewItems attribute.
      Returns:
      the createNewItems
    • isCreateNewItemsAsPrimitive

      public boolean isCreateNewItemsAsPrimitive(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.createNewItems attribute.
      Returns:
      the createNewItems
    • isCreateNewItemsAsPrimitive

      public boolean isCreateNewItemsAsPrimitive()
      Generated method - Getter of the SyncItemJob.createNewItems attribute.
      Returns:
      the createNewItems
    • setCreateNewItems

      public void setCreateNewItems(SessionContext ctx, Boolean value)
      Generated method - Setter of the SyncItemJob.createNewItems attribute.
      Parameters:
      value - the createNewItems
    • setCreateNewItems

      public void setCreateNewItems(Boolean value)
      Generated method - Setter of the SyncItemJob.createNewItems attribute.
      Parameters:
      value - the createNewItems
    • setCreateNewItems

      public void setCreateNewItems(SessionContext ctx, boolean value)
      Generated method - Setter of the SyncItemJob.createNewItems attribute.
      Parameters:
      value - the createNewItems
    • setCreateNewItems

      public void setCreateNewItems(boolean value)
      Generated method - Setter of the SyncItemJob.createNewItems attribute.
      Parameters:
      value - the createNewItems
    • getEffectiveSyncLanguages

      public abstract Collection<Language> getEffectiveSyncLanguages(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.effectiveSyncLanguages attribute.
      Returns:
      the effectiveSyncLanguages
    • getEffectiveSyncLanguages

      public Collection<Language> getEffectiveSyncLanguages()
      Generated method - Getter of the SyncItemJob.effectiveSyncLanguages attribute.
      Returns:
      the effectiveSyncLanguages
    • isExclusiveMode

      public Boolean isExclusiveMode(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.exclusiveMode attribute.
      Returns:
      the exclusiveMode
    • isExclusiveMode

      public Boolean isExclusiveMode()
      Generated method - Getter of the SyncItemJob.exclusiveMode attribute.
      Returns:
      the exclusiveMode
    • isExclusiveModeAsPrimitive

      public boolean isExclusiveModeAsPrimitive(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.exclusiveMode attribute.
      Returns:
      the exclusiveMode
    • isExclusiveModeAsPrimitive

      public boolean isExclusiveModeAsPrimitive()
      Generated method - Getter of the SyncItemJob.exclusiveMode attribute.
      Returns:
      the exclusiveMode
    • setExclusiveMode

      protected void setExclusiveMode(SessionContext ctx, Boolean value)
      Generated method - Setter of the SyncItemJob.exclusiveMode attribute.
      Parameters:
      value - the exclusiveMode
    • setExclusiveMode

      protected void setExclusiveMode(Boolean value)
      Generated method - Setter of the SyncItemJob.exclusiveMode attribute.
      Parameters:
      value - the exclusiveMode
    • setExclusiveMode

      protected void setExclusiveMode(SessionContext ctx, boolean value)
      Generated method - Setter of the SyncItemJob.exclusiveMode attribute.
      Parameters:
      value - the exclusiveMode
    • setExclusiveMode

      protected void setExclusiveMode(boolean value)
      Generated method - Setter of the SyncItemJob.exclusiveMode attribute.
      Parameters:
      value - the exclusiveMode
    • getExecutions

      public abstract Collection<SyncItemCronJob> getExecutions(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.executions attribute.
      Returns:
      the executions
    • getExecutions

      public Collection<SyncItemCronJob> getExecutions()
      Generated method - Getter of the SyncItemJob.executions attribute.
      Returns:
      the executions
    • getAllExportAttributeDescriptors

      public abstract Map<AttributeDescriptor,Boolean> getAllExportAttributeDescriptors(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.exportAttributeDescriptors attribute.
      Returns:
      the exportAttributeDescriptors
    • getAllExportAttributeDescriptors

      public Map<AttributeDescriptor,Boolean> getAllExportAttributeDescriptors()
      Generated method - Getter of the SyncItemJob.exportAttributeDescriptors attribute.
      Returns:
      the exportAttributeDescriptors
    • setAllExportAttributeDescriptors

      public abstract void setAllExportAttributeDescriptors(SessionContext ctx, Map<AttributeDescriptor,Boolean> value)
      Generated method - Setter of the SyncItemJob.exportAttributeDescriptors attribute.
      Parameters:
      value - the exportAttributeDescriptors
    • setAllExportAttributeDescriptors

      public void setAllExportAttributeDescriptors(Map<AttributeDescriptor,Boolean> value)
      Generated method - Setter of the SyncItemJob.exportAttributeDescriptors attribute.
      Parameters:
      value - the exportAttributeDescriptors
    • isMarkModifiedDisabled

      @Deprecated(since="2105", forRemoval=true) public boolean isMarkModifiedDisabled(Item referencedItem)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Overrides:
      isMarkModifiedDisabled in class Item
    • isRemoveMissingItems

      public Boolean isRemoveMissingItems(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.removeMissingItems attribute.
      Returns:
      the removeMissingItems
    • isRemoveMissingItems

      public Boolean isRemoveMissingItems()
      Generated method - Getter of the SyncItemJob.removeMissingItems attribute.
      Returns:
      the removeMissingItems
    • isRemoveMissingItemsAsPrimitive

      public boolean isRemoveMissingItemsAsPrimitive(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.removeMissingItems attribute.
      Returns:
      the removeMissingItems
    • isRemoveMissingItemsAsPrimitive

      public boolean isRemoveMissingItemsAsPrimitive()
      Generated method - Getter of the SyncItemJob.removeMissingItems attribute.
      Returns:
      the removeMissingItems
    • setRemoveMissingItems

      public void setRemoveMissingItems(SessionContext ctx, Boolean value)
      Generated method - Setter of the SyncItemJob.removeMissingItems attribute.
      Parameters:
      value - the removeMissingItems
    • setRemoveMissingItems

      public void setRemoveMissingItems(Boolean value)
      Generated method - Setter of the SyncItemJob.removeMissingItems attribute.
      Parameters:
      value - the removeMissingItems
    • setRemoveMissingItems

      public void setRemoveMissingItems(SessionContext ctx, boolean value)
      Generated method - Setter of the SyncItemJob.removeMissingItems attribute.
      Parameters:
      value - the removeMissingItems
    • setRemoveMissingItems

      public void setRemoveMissingItems(boolean value)
      Generated method - Setter of the SyncItemJob.removeMissingItems attribute.
      Parameters:
      value - the removeMissingItems
    • getRootTypes

      public List<ComposedType> getRootTypes(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.rootTypes attribute.
      Returns:
      the rootTypes
    • getRootTypes

      public List<ComposedType> getRootTypes()
      Generated method - Getter of the SyncItemJob.rootTypes attribute.
      Returns:
      the rootTypes
    • getRootTypesCount

      public long getRootTypesCount(SessionContext ctx)
    • getRootTypesCount

      public long getRootTypesCount()
    • setRootTypes

      public void setRootTypes(SessionContext ctx, List<ComposedType> value)
      Generated method - Setter of the SyncItemJob.rootTypes attribute.
      Parameters:
      value - the rootTypes
    • setRootTypes

      public void setRootTypes(List<ComposedType> value)
      Generated method - Setter of the SyncItemJob.rootTypes attribute.
      Parameters:
      value - the rootTypes
    • addToRootTypes

      public void addToRootTypes(SessionContext ctx, ComposedType value)
      Generated method - Adds value to rootTypes.
      Parameters:
      value - the item to add to rootTypes
    • addToRootTypes

      public void addToRootTypes(ComposedType value)
      Generated method - Adds value to rootTypes.
      Parameters:
      value - the item to add to rootTypes
    • removeFromRootTypes

      public void removeFromRootTypes(SessionContext ctx, ComposedType value)
      Generated method - Removes value from rootTypes.
      Parameters:
      value - the item to remove from rootTypes
    • removeFromRootTypes

      public void removeFromRootTypes(ComposedType value)
      Generated method - Removes value from rootTypes.
      Parameters:
      value - the item to remove from rootTypes
    • getSourceVersion

      public CatalogVersion getSourceVersion(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.sourceVersion attribute.
      Returns:
      the sourceVersion
    • getSourceVersion

      public CatalogVersion getSourceVersion()
      Generated method - Getter of the SyncItemJob.sourceVersion attribute.
      Returns:
      the sourceVersion
    • setSourceVersion

      protected void setSourceVersion(SessionContext ctx, CatalogVersion value)
      Generated method - Setter of the SyncItemJob.sourceVersion attribute.
      Parameters:
      value - the sourceVersion
    • setSourceVersion

      protected void setSourceVersion(CatalogVersion value)
      Generated method - Setter of the SyncItemJob.sourceVersion attribute.
      Parameters:
      value - the sourceVersion
    • getSyncAttributeConfigurations

      public abstract Collection<SyncAttributeDescriptorConfig> getSyncAttributeConfigurations(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.syncAttributeConfigurations attribute.
      Returns:
      the syncAttributeConfigurations
    • getSyncAttributeConfigurations

      public Collection<SyncAttributeDescriptorConfig> getSyncAttributeConfigurations()
      Generated method - Getter of the SyncItemJob.syncAttributeConfigurations attribute.
      Returns:
      the syncAttributeConfigurations
    • setSyncAttributeConfigurations

      public abstract void setSyncAttributeConfigurations(SessionContext ctx, Collection<SyncAttributeDescriptorConfig> value)
      Generated method - Setter of the SyncItemJob.syncAttributeConfigurations attribute.
      Parameters:
      value - the syncAttributeConfigurations
    • setSyncAttributeConfigurations

      public void setSyncAttributeConfigurations(Collection<SyncAttributeDescriptorConfig> value)
      Generated method - Setter of the SyncItemJob.syncAttributeConfigurations attribute.
      Parameters:
      value - the syncAttributeConfigurations
    • getSyncLanguages

      public Set<Language> getSyncLanguages(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.syncLanguages attribute.
      Returns:
      the syncLanguages
    • getSyncLanguages

      public Set<Language> getSyncLanguages()
      Generated method - Getter of the SyncItemJob.syncLanguages attribute.
      Returns:
      the syncLanguages
    • getSyncLanguagesCount

      public long getSyncLanguagesCount(SessionContext ctx)
    • getSyncLanguagesCount

      public long getSyncLanguagesCount()
    • setSyncLanguages

      public void setSyncLanguages(SessionContext ctx, Set<Language> value)
      Generated method - Setter of the SyncItemJob.syncLanguages attribute.
      Parameters:
      value - the syncLanguages
    • setSyncLanguages

      public void setSyncLanguages(Set<Language> value)
      Generated method - Setter of the SyncItemJob.syncLanguages attribute.
      Parameters:
      value - the syncLanguages
    • addToSyncLanguages

      public void addToSyncLanguages(SessionContext ctx, Language value)
      Generated method - Adds value to syncLanguages.
      Parameters:
      value - the item to add to syncLanguages
    • addToSyncLanguages

      public void addToSyncLanguages(Language value)
      Generated method - Adds value to syncLanguages.
      Parameters:
      value - the item to add to syncLanguages
    • removeFromSyncLanguages

      public void removeFromSyncLanguages(SessionContext ctx, Language value)
      Generated method - Removes value from syncLanguages.
      Parameters:
      value - the item to remove from syncLanguages
    • removeFromSyncLanguages

      public void removeFromSyncLanguages(Language value)
      Generated method - Removes value from syncLanguages.
      Parameters:
      value - the item to remove from syncLanguages
    • getSyncOrder

      public Integer getSyncOrder(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.syncOrder attribute.
      Returns:
      the syncOrder
    • getSyncOrder

      public Integer getSyncOrder()
      Generated method - Getter of the SyncItemJob.syncOrder attribute.
      Returns:
      the syncOrder
    • getSyncOrderAsPrimitive

      public int getSyncOrderAsPrimitive(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.syncOrder attribute.
      Returns:
      the syncOrder
    • getSyncOrderAsPrimitive

      public int getSyncOrderAsPrimitive()
      Generated method - Getter of the SyncItemJob.syncOrder attribute.
      Returns:
      the syncOrder
    • setSyncOrder

      public void setSyncOrder(SessionContext ctx, Integer value)
      Generated method - Setter of the SyncItemJob.syncOrder attribute.
      Parameters:
      value - the syncOrder
    • setSyncOrder

      public void setSyncOrder(Integer value)
      Generated method - Setter of the SyncItemJob.syncOrder attribute.
      Parameters:
      value - the syncOrder
    • setSyncOrder

      public void setSyncOrder(SessionContext ctx, int value)
      Generated method - Setter of the SyncItemJob.syncOrder attribute.
      Parameters:
      value - the syncOrder
    • setSyncOrder

      public void setSyncOrder(int value)
      Generated method - Setter of the SyncItemJob.syncOrder attribute.
      Parameters:
      value - the syncOrder
    • getSyncPrincipals

      public List<Principal> getSyncPrincipals(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.syncPrincipals attribute.
      Returns:
      the syncPrincipals
    • getSyncPrincipals

      public List<Principal> getSyncPrincipals()
      Generated method - Getter of the SyncItemJob.syncPrincipals attribute.
      Returns:
      the syncPrincipals
    • getSyncPrincipalsCount

      public long getSyncPrincipalsCount(SessionContext ctx)
    • getSyncPrincipalsCount

      public long getSyncPrincipalsCount()
    • setSyncPrincipals

      public void setSyncPrincipals(SessionContext ctx, List<Principal> value)
      Generated method - Setter of the SyncItemJob.syncPrincipals attribute.
      Parameters:
      value - the syncPrincipals
    • setSyncPrincipals

      public void setSyncPrincipals(List<Principal> value)
      Generated method - Setter of the SyncItemJob.syncPrincipals attribute.
      Parameters:
      value - the syncPrincipals
    • addToSyncPrincipals

      public void addToSyncPrincipals(SessionContext ctx, Principal value)
      Generated method - Adds value to syncPrincipals.
      Parameters:
      value - the item to add to syncPrincipals
    • addToSyncPrincipals

      public void addToSyncPrincipals(Principal value)
      Generated method - Adds value to syncPrincipals.
      Parameters:
      value - the item to add to syncPrincipals
    • removeFromSyncPrincipals

      public void removeFromSyncPrincipals(SessionContext ctx, Principal value)
      Generated method - Removes value from syncPrincipals.
      Parameters:
      value - the item to remove from syncPrincipals
    • removeFromSyncPrincipals

      public void removeFromSyncPrincipals(Principal value)
      Generated method - Removes value from syncPrincipals.
      Parameters:
      value - the item to remove from syncPrincipals
    • isSyncPrincipalsOnly

      public Boolean isSyncPrincipalsOnly(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.syncPrincipalsOnly attribute.
      Returns:
      the syncPrincipalsOnly
    • isSyncPrincipalsOnly

      public Boolean isSyncPrincipalsOnly()
      Generated method - Getter of the SyncItemJob.syncPrincipalsOnly attribute.
      Returns:
      the syncPrincipalsOnly
    • isSyncPrincipalsOnlyAsPrimitive

      public boolean isSyncPrincipalsOnlyAsPrimitive(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.syncPrincipalsOnly attribute.
      Returns:
      the syncPrincipalsOnly
    • isSyncPrincipalsOnlyAsPrimitive

      public boolean isSyncPrincipalsOnlyAsPrimitive()
      Generated method - Getter of the SyncItemJob.syncPrincipalsOnly attribute.
      Returns:
      the syncPrincipalsOnly
    • setSyncPrincipalsOnly

      public void setSyncPrincipalsOnly(SessionContext ctx, Boolean value)
      Generated method - Setter of the SyncItemJob.syncPrincipalsOnly attribute.
      Parameters:
      value - the syncPrincipalsOnly
    • setSyncPrincipalsOnly

      public void setSyncPrincipalsOnly(Boolean value)
      Generated method - Setter of the SyncItemJob.syncPrincipalsOnly attribute.
      Parameters:
      value - the syncPrincipalsOnly
    • setSyncPrincipalsOnly

      public void setSyncPrincipalsOnly(SessionContext ctx, boolean value)
      Generated method - Setter of the SyncItemJob.syncPrincipalsOnly attribute.
      Parameters:
      value - the syncPrincipalsOnly
    • setSyncPrincipalsOnly

      public void setSyncPrincipalsOnly(boolean value)
      Generated method - Setter of the SyncItemJob.syncPrincipalsOnly attribute.
      Parameters:
      value - the syncPrincipalsOnly
    • getTargetVersion

      public CatalogVersion getTargetVersion(SessionContext ctx)
      Generated method - Getter of the SyncItemJob.targetVersion attribute.
      Returns:
      the targetVersion
    • getTargetVersion

      public CatalogVersion getTargetVersion()
      Generated method - Getter of the SyncItemJob.targetVersion attribute.
      Returns:
      the targetVersion
    • setTargetVersion

      protected void setTargetVersion(SessionContext ctx, CatalogVersion value)
      Generated method - Setter of the SyncItemJob.targetVersion attribute.
      Parameters:
      value - the targetVersion
    • setTargetVersion

      protected void setTargetVersion(CatalogVersion value)
      Generated method - Setter of the SyncItemJob.targetVersion attribute.
      Parameters:
      value - the targetVersion