Fixed minor issues reported by sonar (Modifier Order)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@64832 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2014-03-19 00:30:50 +00:00
parent c4173be84c
commit fcdbd56d3a
3 changed files with 9 additions and 9 deletions

View File

@@ -38,7 +38,7 @@ public class AuditLogGet extends BaseAuditRetrievalWebScript
/** Logger */ /** Logger */
private static Log logger = LogFactory.getLog(AuditLogGet.class); private static Log logger = LogFactory.getLog(AuditLogGet.class);
protected final static String PARAM_EXPORT = "export"; private static final String PARAM_EXPORT = "export";
/** Content Streamer */ /** Content Streamer */
protected ContentStreamer contentStreamer; protected ContentStreamer contentStreamer;

View File

@@ -50,13 +50,13 @@ public class BaseAuditRetrievalWebScript extends StreamContent
/** Logger */ /** Logger */
private static Log logger = LogFactory.getLog(BaseAuditRetrievalWebScript.class); private static Log logger = LogFactory.getLog(BaseAuditRetrievalWebScript.class);
protected final static String PARAM_USER = "user"; private static final String PARAM_USER = "user";
protected final static String PARAM_SIZE = "size"; private static final String PARAM_SIZE = "size";
protected final static String PARAM_EVENT = "event"; private static final String PARAM_EVENT = "event";
protected final static String PARAM_FROM = "from"; private static final String PARAM_FROM = "from";
protected final static String PARAM_TO = "to"; private static final String PARAM_TO = "to";
protected final static String PARAM_PROPERTY = "property"; private static final String PARAM_PROPERTY = "property";
protected final static String DATE_PATTERN = "yyyy-MM-dd"; private static final String DATE_PATTERN = "yyyy-MM-dd";
protected RecordsManagementAuditService rmAuditService; protected RecordsManagementAuditService rmAuditService;
protected NamespaceService namespaceService; protected NamespaceService namespaceService;

View File

@@ -41,7 +41,7 @@ import org.springframework.extensions.webscripts.WebScriptRequest;
public class DodCustomTypesGet extends DeclarativeWebScript public class DodCustomTypesGet extends DeclarativeWebScript
{ {
// TODO Investigate a way of not hard-coding the 4 custom types here. // TODO Investigate a way of not hard-coding the 4 custom types here.
private final static List<QName> CUSTOM_TYPE_ASPECTS = Arrays.asList(new QName[]{DOD5015Model.ASPECT_SCANNED_RECORD, private static final List<QName> CUSTOM_TYPE_ASPECTS = Arrays.asList(new QName[]{DOD5015Model.ASPECT_SCANNED_RECORD,
DOD5015Model.ASPECT_PDF_RECORD, DOD5015Model.ASPECT_DIGITAL_PHOTOGRAPH_RECORD, DOD5015Model.ASPECT_WEB_RECORD}); DOD5015Model.ASPECT_PDF_RECORD, DOD5015Model.ASPECT_DIGITAL_PHOTOGRAPH_RECORD, DOD5015Model.ASPECT_WEB_RECORD});
private DictionaryService dictionaryService; private DictionaryService dictionaryService;