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 (Member name)
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@64826 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -51,7 +51,7 @@ import org.springframework.context.ApplicationContextAware;
|
|||||||
public class RMSecurityCommon implements ApplicationContextAware
|
public class RMSecurityCommon implements ApplicationContextAware
|
||||||
{
|
{
|
||||||
/** No set value */
|
/** No set value */
|
||||||
protected int NOSET_VALUE = -100;
|
protected static final int NOSET_VALUE = -100;
|
||||||
|
|
||||||
/** Logger */
|
/** Logger */
|
||||||
private static Log logger = LogFactory.getLog(RMSecurityCommon.class);
|
private static Log logger = LogFactory.getLog(RMSecurityCommon.class);
|
||||||
|
@@ -29,7 +29,7 @@ import org.alfresco.service.cmr.repository.NodeRef;
|
|||||||
public class Hold
|
public class Hold
|
||||||
{
|
{
|
||||||
/** Hold name */
|
/** Hold name */
|
||||||
private String Name;
|
private String name;
|
||||||
|
|
||||||
/** Hold node reference */
|
/** Hold node reference */
|
||||||
private NodeRef nodeRef;
|
private NodeRef nodeRef;
|
||||||
@@ -42,7 +42,7 @@ public class Hold
|
|||||||
*/
|
*/
|
||||||
public Hold(String name, NodeRef nodeRef)
|
public Hold(String name, NodeRef nodeRef)
|
||||||
{
|
{
|
||||||
this.Name = name;
|
this.name = name;
|
||||||
this.nodeRef = nodeRef;
|
this.nodeRef = nodeRef;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -53,7 +53,7 @@ public class Hold
|
|||||||
*/
|
*/
|
||||||
public String getName()
|
public String getName()
|
||||||
{
|
{
|
||||||
return this.Name;
|
return this.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user