mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Fixed major issues reported by sonar (Static Variable Name)
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@65398 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -39,7 +39,7 @@ import org.quartz.JobExecutionException;
|
||||
*/
|
||||
public class RecordsManagementJob implements Job
|
||||
{
|
||||
private static long DEFAULT_TIME = 30000L;
|
||||
private static final long DEFAULT_TIME = 30000L;
|
||||
|
||||
private JobLockService jobLockService;
|
||||
|
||||
|
@@ -41,7 +41,7 @@ import org.springframework.beans.factory.BeanNameAware;
|
||||
public class RMv2ModelPatch extends ModulePatchComponent
|
||||
implements BeanNameAware, RecordsManagementModel, DOD5015Model
|
||||
{
|
||||
private static long BATCH_SIZE = 100000L;
|
||||
private static final long BATCH_SIZE = 100000L;
|
||||
|
||||
private PatchDAO patchDAO;
|
||||
private NodeDAO nodeDAO;
|
||||
|
@@ -40,7 +40,7 @@ public class RMv22DODModelSeparationModulePatch extends AbstractModulePatch
|
||||
implements RecordsManagementModel
|
||||
{
|
||||
/** query batch size */
|
||||
private static long BATCH_SIZE = 100000L;
|
||||
private static final long BATCH_SIZE = 100000L;
|
||||
|
||||
/** QName DAO */
|
||||
private QNameDAO qnameDAO;
|
||||
|
Reference in New Issue
Block a user