mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.2E to HEAD
17635: Complete fix for ETHREEOH-2879 - user with missing first/last name able to use Discussions, Blogs, Links etc. in Share. 17637: Fix regression from r17601: Favourite sites in header menu. 17638: Fix ETHREEOH-3610 - upgrade Enterprise 2.x -> 3.2 (personUsagePatch) 17641: ETHREEOH-3612 Security Issue : DeploymentTarget uses String to represent passwords 17642: Fix for ETHREEOH-3482 - Impossible to delete content from its details page. - regression due to the "AbortProcessingException" changes added a while back. 17660: Minor functional fixes for mobile app and cleanup 17663: Fixed ETHREEOH-3664 "'My Tasks' dashlet could not load task list if a user was invited to a private site" - When webscript accessed a private site undefined was returned so the title and description couldn't be displayed, now the values are store on the invite task instead. 17665: Fix up compile errors from r17663 - also clean up old code to coding standards in related invite classes. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18162 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -24,11 +24,11 @@ public class DeploymentReceiverAuthenticatorAuthenticationService implements Dep
|
||||
* @param password
|
||||
* @return true, yes - go ahead.
|
||||
*/
|
||||
public boolean logon(String user, String password)
|
||||
public boolean logon(String user, char[] password)
|
||||
{
|
||||
try
|
||||
{
|
||||
authenticationService.authenticate(user, password.toCharArray());
|
||||
authenticationService.authenticate(user, password);
|
||||
return true;
|
||||
}
|
||||
catch (AuthenticationException e)
|
||||
|
@@ -72,7 +72,7 @@ public class DeploymentReceiverServiceClient implements
|
||||
/* (non-Javadoc)
|
||||
* @see org.alfresco.deployment.DeploymentReceiverService#begin(java.lang.String, java.lang.String, java.lang.String)
|
||||
*/
|
||||
public DeploymentToken begin(String target, String storeName, int version, String user, String password)
|
||||
public DeploymentToken begin(String target, String storeName, int version, String user, char[] password)
|
||||
{
|
||||
return fTransport.begin(target, storeName, version, user, password);
|
||||
}
|
||||
@@ -138,7 +138,7 @@ public class DeploymentReceiverServiceClient implements
|
||||
/* (non-Javadoc)
|
||||
* @see org.alfresco.deployment.DeploymentReceiverService#shutDown(java.lang.String, java.lang.String)
|
||||
*/
|
||||
public void shutDown(String user, String password)
|
||||
public void shutDown(String user, char[] password)
|
||||
{
|
||||
fTransport.shutDown(user, password);
|
||||
}
|
||||
|
@@ -1082,7 +1082,7 @@ public class DeploymentServiceImpl implements DeploymentService
|
||||
|
||||
try
|
||||
{
|
||||
DeploymentToken token = service.begin(target, storeName, version, userName, password);
|
||||
DeploymentToken token = service.begin(target, storeName, version, userName, password.toCharArray());
|
||||
ticket = token.getTicket();
|
||||
deployDirectoryPushFSR(service, ticket, version, srcPath, "/", matcher, eventQueue, sendQueue, errors, lock);
|
||||
}
|
||||
|
Reference in New Issue
Block a user