mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
MOB-820: IMAP as configurable subsystem + MOB-817: NFS RPC user mappings + MOB-816: File server domain and global ACL mappings
- JLAN changes: revert previous changes and make AccessControl constructors public git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14353 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -24,12 +24,13 @@
|
||||
*/
|
||||
package org.alfresco.filesys.auth.nfs;
|
||||
|
||||
import org.springframework.beans.factory.BeanNameAware;
|
||||
|
||||
/**
|
||||
* Represents a user mapping for the {@link AlfrescoRpcAuthenticator}.
|
||||
*/
|
||||
public class UserMapping
|
||||
public class UserMapping implements BeanNameAware
|
||||
{
|
||||
|
||||
/** The name. */
|
||||
private String name;
|
||||
|
||||
@@ -71,16 +72,14 @@ public class UserMapping
|
||||
*/
|
||||
public String getName()
|
||||
{
|
||||
return name;
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the name.
|
||||
*
|
||||
* @param name
|
||||
* the new name
|
||||
/*
|
||||
* (non-Javadoc)
|
||||
* @see org.springframework.beans.factory.BeanNameAware#setBeanName(java.lang.String)
|
||||
*/
|
||||
public void setName(String name)
|
||||
public void setBeanName(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
@@ -92,7 +91,7 @@ public class UserMapping
|
||||
*/
|
||||
public int getUid()
|
||||
{
|
||||
return uid;
|
||||
return this.uid;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -113,7 +112,7 @@ public class UserMapping
|
||||
*/
|
||||
public int getGid()
|
||||
{
|
||||
return gid;
|
||||
return this.gid;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user