Invite REST API Service with (1) additional Unit Tests (2) latest round of fixes so all unit tests for "invite", "inviteresponse" and "invites" (pending invites) Java-backed Web Scripts pass (3) moving superseded invite.get.js and inviteresponse.get.js out of the way and "turning on" Java-backed Web Scripts

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@9818 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Glen Johnson
2008-07-11 14:45:02 +00:00
parent f55317a565
commit bec70786f7

View File

@@ -53,6 +53,6 @@ public class BasicPasswordGenerator implements PasswordGenerator
*/
public String generatePassword()
{
return RandomStringUtils.randomAscii(passwordLength);
return RandomStringUtils.randomAlphanumeric(passwordLength);
}
}