Class BatchEntity

    • Field Detail

      • id

        protected java.lang.String id
      • type

        protected java.lang.String type
      • totalJobs

        protected int totalJobs
      • jobsCreated

        protected int jobsCreated
      • batchJobsPerSeed

        protected int batchJobsPerSeed
      • invocationsPerBatchJob

        protected int invocationsPerBatchJob
      • seedJobDefinitionId

        protected java.lang.String seedJobDefinitionId
      • monitorJobDefinitionId

        protected java.lang.String monitorJobDefinitionId
      • batchJobDefinitionId

        protected java.lang.String batchJobDefinitionId
      • tenantId

        protected java.lang.String tenantId
      • createUserId

        protected java.lang.String createUserId
      • suspensionState

        protected int suspensionState
      • revision

        protected int revision
    • Constructor Detail

      • BatchEntity

        public BatchEntity()
    • Method Detail

      • getId

        public java.lang.String getId()
        Specified by:
        getId in interface Batch
        Specified by:
        getId in interface DbEntity
        Returns:
        the id of the batch
      • setId

        public void setId​(java.lang.String id)
        Specified by:
        setId in interface DbEntity
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface Nameable
      • getType

        public java.lang.String getType()
        Specified by:
        getType in interface Batch
        Returns:
        the type of the batch
      • setType

        public void setType​(java.lang.String type)
      • getTotalJobs

        public int getTotalJobs()
        Specified by:
        getTotalJobs in interface Batch
        Returns:
        the number of batch execution jobs required to complete the batch
      • setTotalJobs

        public void setTotalJobs​(int totalJobs)
      • getJobsCreated

        public int getJobsCreated()
        Specified by:
        getJobsCreated in interface Batch
        Returns:
        the number of batch execution jobs already created by the seed job
      • setJobsCreated

        public void setJobsCreated​(int jobsCreated)
      • getBatchJobsPerSeed

        public int getBatchJobsPerSeed()
        Specified by:
        getBatchJobsPerSeed in interface Batch
        Returns:
        number of batch jobs created per batch seed job invocation
      • setBatchJobsPerSeed

        public void setBatchJobsPerSeed​(int batchJobsPerSeed)
      • getInvocationsPerBatchJob

        public int getInvocationsPerBatchJob()
        Specified by:
        getInvocationsPerBatchJob in interface Batch
        Returns:
        the number of invocations executed per batch job
      • setInvocationsPerBatchJob

        public void setInvocationsPerBatchJob​(int invocationsPerBatchJob)
      • getSeedJobDefinitionId

        public java.lang.String getSeedJobDefinitionId()
        Specified by:
        getSeedJobDefinitionId in interface Batch
        Returns:
        the id of the batch seed job definition
      • setSeedJobDefinitionId

        public void setSeedJobDefinitionId​(java.lang.String seedJobDefinitionId)
      • getMonitorJobDefinitionId

        public java.lang.String getMonitorJobDefinitionId()
        Specified by:
        getMonitorJobDefinitionId in interface Batch
        Returns:
        the id of the batch monitor job definition
      • setMonitorJobDefinitionId

        public void setMonitorJobDefinitionId​(java.lang.String monitorJobDefinitionId)
      • getBatchJobDefinitionId

        public java.lang.String getBatchJobDefinitionId()
        Specified by:
        getBatchJobDefinitionId in interface Batch
        Returns:
        the id of the batch job definition
      • setBatchJobDefinitionId

        public void setBatchJobDefinitionId​(java.lang.String batchJobDefinitionId)
      • getTenantId

        public java.lang.String getTenantId()
        Specified by:
        getTenantId in interface Batch
        Returns:
        the batch's tenant id or null
      • setTenantId

        public void setTenantId​(java.lang.String tenantId)
      • getCreateUserId

        public java.lang.String getCreateUserId()
        Specified by:
        getCreateUserId in interface Batch
        Returns:
        the batch creator's user id
      • setCreateUserId

        public void setCreateUserId​(java.lang.String createUserId)
      • getConfiguration

        public java.lang.String getConfiguration()
      • setConfiguration

        public void setConfiguration​(java.lang.String configuration)
      • setSuspensionState

        public void setSuspensionState​(int state)
      • getSuspensionState

        public int getSuspensionState()
      • getConfigurationBytes

        public byte[] getConfigurationBytes()
      • setConfigurationBytes

        public void setConfigurationBytes​(byte[] configuration)
      • getPersistentState

        public java.lang.Object getPersistentState()
        Description copied from interface: DbEntity
        Returns a representation of the object, as would be stored in the database. Used when deciding if updates have occurred to the object or not since it was last loaded.
        Specified by:
        getPersistentState in interface DbEntity
      • createSeedJobDefinition

        public JobDefinitionEntity createSeedJobDefinition​(java.lang.String deploymentId)
      • createSeedJob

        public JobEntity createSeedJob()
      • deleteSeedJob

        public void deleteSeedJob()
      • createMonitorJob

        public JobEntity createMonitorJob​(boolean setDueDate)
      • calculateMonitorJobDueDate

        protected java.util.Date calculateMonitorJobDueDate()
      • deleteMonitorJob

        public void deleteMonitorJob()
      • delete

        public void delete​(boolean cascadeToHistory,
                           boolean deleteJobs)
      • deleteVariables

        protected void deleteVariables​(CommandContext commandContext)
      • fireHistoricStartEvent

        public void fireHistoricStartEvent()
      • fireHistoricEndEvent

        public void fireHistoricEndEvent()
      • isCompleted

        public boolean isCompleted()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getReferencedEntityIds

        public java.util.Set<java.lang.String> getReferencedEntityIds()
        Description copied from interface: HasDbReferences

        Scope: IN-MEMORY references

        Specified by:
        getReferencedEntityIds in interface HasDbReferences
        Returns:
        the ids of the entities that this entity references. Should only return ids for entities of the same type
      • getReferencedEntitiesIdAndClass

        public java.util.Map<java.lang.String,​java.lang.Class> getReferencedEntitiesIdAndClass()
        Description copied from interface: HasDbReferences

        Scope: IN-MEMORY references

        Specified by:
        getReferencedEntitiesIdAndClass in interface HasDbReferences
        Returns:
        a map of the ids and the entities' classes that this entity references. It's used when trying to determine if there was an Optimistic Locking occurrence on an INSERT or UPDATE of an object of this type.