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:
Tuna Aksoy
2014-03-22 16:03:14 +00:00
parent 166ece8ebb
commit 8732f1cc5b
3 changed files with 19 additions and 19 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;