Merged 1.4 to HEAD

svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/V1.4@4313 svn://svn.alfresco.com:3691/alfresco/BRANCHES/V1.4@4314 .
   svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/V1.4@4317 svn://svn.alfresco.com:3691/alfresco/BRANCHES/V1.4@4318 .


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4656 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-12-19 14:28:55 +00:00
parent cfb373ae36
commit 488450a988
17 changed files with 1807 additions and 877 deletions

View File

@@ -67,6 +67,10 @@ public class ClientInfo
private String m_ipAddr;
// PID of the logon process for multi-stage logons
private int m_pid = -1;
// Authentication token
private Authentication m_authToken;
@@ -394,6 +398,26 @@ public class ClientInfo
return m_nfsAuthType;
}
/**
* Return the process id
*
* @return int
*/
public final int getProcessId()
{
return m_pid;
}
/**
* Set the process id
*
* @param pid int
*/
public final void setProcessId( int pid)
{
m_pid = pid;
}
/**
* Set the remote users domain
*