Class GeneratedSyncItemJob

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

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

      • EXCLUSIVEMODE

        public static final java.lang.String EXCLUSIVEMODE
        Qualifier of the SyncItemJob.exclusiveMode attribute
        See Also:
        Constant Field Values
      • SYNCPRINCIPALSONLY

        public static final java.lang.String SYNCPRINCIPALSONLY
        Qualifier of the SyncItemJob.syncPrincipalsOnly attribute
        See Also:
        Constant Field Values
      • CREATENEWITEMS

        public static final java.lang.String CREATENEWITEMS
        Qualifier of the SyncItemJob.createNewItems attribute
        See Also:
        Constant Field Values
      • REMOVEMISSINGITEMS

        public static final java.lang.String REMOVEMISSINGITEMS
        Qualifier of the SyncItemJob.removeMissingItems attribute
        See Also:
        Constant Field Values
      • EXECUTIONS

        public static final java.lang.String EXECUTIONS
        Qualifier of the SyncItemJob.executions attribute
        See Also:
        Constant Field Values
      • SYNCORDER

        public static final java.lang.String SYNCORDER
        Qualifier of the SyncItemJob.syncOrder attribute
        See Also:
        Constant Field Values
      • EXPORTATTRIBUTEDESCRIPTORS

        public static final java.lang.String EXPORTATTRIBUTEDESCRIPTORS
        Qualifier of the SyncItemJob.exportAttributeDescriptors attribute
        See Also:
        Constant Field Values
      • SYNCATTRIBUTECONFIGURATIONS

        public static final java.lang.String SYNCATTRIBUTECONFIGURATIONS
        Qualifier of the SyncItemJob.syncAttributeConfigurations attribute
        See Also:
        Constant Field Values
      • EFFECTIVESYNCLANGUAGES

        public static final java.lang.String EFFECTIVESYNCLANGUAGES
        Qualifier of the SyncItemJob.effectiveSyncLanguages attribute
        See Also:
        Constant Field Values
      • SOURCEVERSION

        public static final java.lang.String SOURCEVERSION
        Qualifier of the SyncItemJob.sourceVersion attribute
        See Also:
        Constant Field Values
      • TARGETVERSION

        public static final java.lang.String TARGETVERSION
        Qualifier of the SyncItemJob.targetVersion attribute
        See Also:
        Constant Field Values
      • ROOTTYPES

        public static final java.lang.String ROOTTYPES
        Qualifier of the SyncItemJob.rootTypes attribute
        See Also:
        Constant Field Values
      • SYNCJOB2TYPEREL_SRC_ORDERED

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

        protected static java.lang.String SYNCJOB2TYPEREL_TGT_ORDERED
      • SYNCJOB2TYPEREL_MARKMODIFIED

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

        public static final java.lang.String SYNCLANGUAGES
        Qualifier of the SyncItemJob.syncLanguages attribute
        See Also:
        Constant Field Values
      • SYNCJOB2LANGREL_SRC_ORDERED

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

        protected static java.lang.String SYNCJOB2LANGREL_TGT_ORDERED
      • SYNCJOB2LANGREL_MARKMODIFIED

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

        public static final java.lang.String SYNCPRINCIPALS
        Qualifier of the SyncItemJob.syncPrincipals attribute
        See Also:
        Constant Field Values
      • SYNCITEMJOB2PRINCIPAL_SRC_ORDERED

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

        protected static java.lang.String SYNCITEMJOB2PRINCIPAL_TGT_ORDERED
      • SYNCITEMJOB2PRINCIPAL_MARKMODIFIED

        protected static java.lang.String SYNCITEMJOB2PRINCIPAL_MARKMODIFIED
        Relation disable markmodifed parameter constants for SyncItemJob2Principal from ((catalog))
      • DEFAULT_INITIAL_ATTRIBUTES

        protected static final java.util.Map<java.lang.String,​Item.AttributeMode> DEFAULT_INITIAL_ATTRIBUTES
    • Constructor Detail

      • GeneratedSyncItemJob

        public GeneratedSyncItemJob()
    • 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 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 java.lang.Boolean isCreateNewItems​(SessionContext ctx)
        Generated method - Getter of the SyncItemJob.createNewItems attribute.
        Returns:
        the createNewItems
      • isCreateNewItems

        public java.lang.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,
                                      java.lang.Boolean value)
        Generated method - Setter of the SyncItemJob.createNewItems attribute.
        Parameters:
        value - the createNewItems
      • setCreateNewItems

        public void setCreateNewItems​(java.lang.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 java.util.Collection<Language> getEffectiveSyncLanguages​(SessionContext ctx)
        Generated method - Getter of the SyncItemJob.effectiveSyncLanguages attribute.
        Returns:
        the effectiveSyncLanguages
      • getEffectiveSyncLanguages

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

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

        public java.lang.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,
                                        java.lang.Boolean value)
        Generated method - Setter of the SyncItemJob.exclusiveMode attribute.
        Parameters:
        value - the exclusiveMode
      • setExclusiveMode

        protected void setExclusiveMode​(java.lang.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 java.util.Collection<SyncItemCronJob> getExecutions​(SessionContext ctx)
        Generated method - Getter of the SyncItemJob.executions attribute.
        Returns:
        the executions
      • getExecutions

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

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

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

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

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

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

        public java.lang.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,
                                          java.lang.Boolean value)
        Generated method - Setter of the SyncItemJob.removeMissingItems attribute.
        Parameters:
        value - the removeMissingItems
      • setRemoveMissingItems

        public void setRemoveMissingItems​(java.lang.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 java.util.List<ComposedType> getRootTypes​(SessionContext ctx)
        Generated method - Getter of the SyncItemJob.rootTypes attribute.
        Returns:
        the rootTypes
      • getRootTypes

        public java.util.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,
                                 java.util.List<ComposedType> value)
        Generated method - Setter of the SyncItemJob.rootTypes attribute.
        Parameters:
        value - the rootTypes
      • setRootTypes

        public void setRootTypes​(java.util.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 java.util.Collection<SyncAttributeDescriptorConfig> getSyncAttributeConfigurations​(SessionContext ctx)
        Generated method - Getter of the SyncItemJob.syncAttributeConfigurations attribute.
        Returns:
        the syncAttributeConfigurations
      • getSyncAttributeConfigurations

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

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

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

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

        public java.util.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,
                                     java.util.Set<Language> value)
        Generated method - Setter of the SyncItemJob.syncLanguages attribute.
        Parameters:
        value - the syncLanguages
      • setSyncLanguages

        public void setSyncLanguages​(java.util.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 java.lang.Integer getSyncOrder​(SessionContext ctx)
        Generated method - Getter of the SyncItemJob.syncOrder attribute.
        Returns:
        the syncOrder
      • getSyncOrder

        public java.lang.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,
                                 java.lang.Integer value)
        Generated method - Setter of the SyncItemJob.syncOrder attribute.
        Parameters:
        value - the syncOrder
      • setSyncOrder

        public void setSyncOrder​(java.lang.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 java.util.List<Principal> getSyncPrincipals​(SessionContext ctx)
        Generated method - Getter of the SyncItemJob.syncPrincipals attribute.
        Returns:
        the syncPrincipals
      • getSyncPrincipals

        public java.util.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,
                                      java.util.List<Principal> value)
        Generated method - Setter of the SyncItemJob.syncPrincipals attribute.
        Parameters:
        value - the syncPrincipals
      • setSyncPrincipals

        public void setSyncPrincipals​(java.util.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 java.lang.Boolean isSyncPrincipalsOnly​(SessionContext ctx)
        Generated method - Getter of the SyncItemJob.syncPrincipalsOnly attribute.
        Returns:
        the syncPrincipalsOnly
      • isSyncPrincipalsOnly

        public java.lang.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,
                                          java.lang.Boolean value)
        Generated method - Setter of the SyncItemJob.syncPrincipalsOnly attribute.
        Parameters:
        value - the syncPrincipalsOnly
      • setSyncPrincipalsOnly

        public void setSyncPrincipalsOnly​(java.lang.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