Searched defs:userPassword (Results 1 - 25 of 31) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DAMUserNamePasswordAuthenticator.java45 private String userPassword; field in class:AMUserNamePasswordAuthenticator
56 userPassword = password;
67 return new PasswordAuthentication(userName, userPassword);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DAMUserNamePasswordAuthenticator.java45 private String userPassword; field in class:AMUserNamePasswordAuthenticator
56 userPassword = password;
67 return new PasswordAuthentication(userName, userPassword);
/forgerock/openam-v13/openam-authentication/openam-auth-application/src/main/java/com/sun/identity/authentication/modules/application/
H A DApplication.java211 private boolean doFallbackAuth(String userName, String userPassword) argument
220 if (authenticateToDatastore(userName, userPassword)) {
229 } else if (authenticateToLDAP(userName, userPassword) == ModuleState.SUCCESS) {
310 private ModuleState authenticateToLDAP(String userName, String userPassword) argument
322 ldapUtil.authenticateUser(userName, userPassword);
333 ldapUtil.authenticateUser(userName, userPassword);
361 * @param userPassword User Password
366 String userPassword) throws AuthLoginException {
374 passwordCallback.setPassword(userPassword.toCharArray());
365 authenticateToDatastore(String userName, String userPassword) argument
/forgerock/openam-v13/openam-authentication/openam-auth-datastore/src/main/java/com/sun/identity/authentication/modules/datastore/
H A DDataStore.java57 private String userPassword; field in class:DataStore
109 userPassword = (String) sharedState.get(getPwdKey());
110 if (userName == null || userPassword == null) {
118 passwordCallback.setPassword(userPassword.toCharArray());
125 userPassword = password == null ? null : String.valueOf(password);
131 if (userPassword == null || userPassword.length() == 0) {
136 storeUsernamePasswd(userName, userPassword);
193 userPassword = null;
/forgerock/openam-v13/openam-authentication/openam-auth-httpbasic/src/main/java/com/sun/identity/authentication/modules/httpbasic/
H A DHTTPBasic.java76 private String userPassword; field in class:HTTPBasic
186 userPassword = null;
201 userPassword = decode.substring(idx+1);
204 storeUsernamePasswd(userName, userPassword);
216 passwordCallback.setPassword(userPassword.toCharArray());
/forgerock/openam/openam-authentication/openam-auth-application/src/main/java/com/sun/identity/authentication/modules/application/
H A DApplication.java180 private boolean doFallbackAuth(String userName, String userPassword) argument
187 if (authenticateToDatastore(userName, userPassword)) {
202 * @param userPassword User Password
206 private boolean authenticateToDatastore(String userName, String userPassword) throws AuthLoginException { argument
213 passwordCallback.setPassword(userPassword.toCharArray());
/forgerock/openam/openam-authentication/openam-auth-datastore/src/main/java/com/sun/identity/authentication/modules/datastore/
H A DDataStore.java57 private String userPassword; field in class:DataStore
109 userPassword = (String) sharedState.get(getPwdKey());
110 if (userName == null || userPassword == null) {
118 passwordCallback.setPassword(userPassword.toCharArray());
125 userPassword = password == null ? null : String.valueOf(password);
131 if (userPassword == null || userPassword.length() == 0) {
136 storeUsernamePasswd(userName, userPassword);
193 userPassword = null;
/forgerock/openam/openam-authentication/openam-auth-httpbasic/src/main/java/com/sun/identity/authentication/modules/httpbasic/
H A DHTTPBasic.java76 private String userPassword; field in class:HTTPBasic
186 userPassword = null;
201 userPassword = decode.substring(idx+1);
204 storeUsernamePasswd(userName, userPassword);
216 passwordCallback.setPassword(userPassword.toCharArray());
/forgerock/opendj2/src/dsml/org/opends/dsml/protocol/
H A DDSMLServlet.java150 private String userPassword; field in class:DSMLServlet
178 userPassword = config.getServletContext().getInitParameter(USERPWD);
436 if (userPassword != null)
438 bindPassword = userPassword;
/forgerock/opendj-b2.6/src/dsml/org/opends/dsml/protocol/
H A DDSMLServlet.java148 private String userPassword; field in class:DSMLServlet
176 userPassword = config.getServletContext().getInitParameter(USERPWD);
424 if (userPassword != null)
426 bindPassword = userPassword;
/forgerock/opendj2.6.2/src/dsml/org/opends/dsml/protocol/
H A DDSMLServlet.java148 private String userPassword; field in class:DSMLServlet
176 userPassword = config.getServletContext().getInitParameter(USERPWD);
424 if (userPassword != null)
426 bindPassword = userPassword;
/forgerock/opendj2-hg/src/dsml/org/opends/dsml/protocol/
H A DDSMLServlet.java150 private String userPassword; field in class:DSMLServlet
178 userPassword = config.getServletContext().getInitParameter(USERPWD);
436 if (userPassword != null)
438 bindPassword = userPassword;
/forgerock/opendj2-jel-hg/src/dsml/org/opends/dsml/protocol/
H A DDSMLServlet.java148 private String userPassword; field in class:DSMLServlet
176 userPassword = config.getServletContext().getInitParameter(USERPWD);
424 if (userPassword != null)
426 bindPassword = userPassword;
/forgerock/openam-v13/openam-authentication/openam-auth-ldap/src/main/java/com/sun/identity/authentication/modules/ldap/
H A DLDAP.java80 private String userPassword; field in class:LDAP
306 userPassword = (String) sharedState.get(getPwdKey());
308 if (userName == null || userPassword == null) {
316 userPassword = charToString(((PasswordCallback)
320 if (userPassword == null || userPassword.length() == 0) {
330 storeUsernamePasswd(userName, userPassword);
335 ldapUtil.authenticateUser(userName, userPassword);
346 validatePassword(userPassword);
531 userPassword
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DOAuth.java108 String userPassword = ""; field in class:OAuth
408 userPassword = request.getParameter(PARAM_TOKEN1);
409 validateInput(PARAM_TOKEN1, userPassword, "HTTPParameterValue",
415 if (!userPassword.equals(userPassword2)) {
465 authenticatedUser = provisionAccountNow(accountProvider, realm, profileSvcResponse, userPassword,
657 String userPassword, JwtClaimsSet jwtClaims)
664 attributes.put("userPassword", CollectionUtils.asSet(userPassword));
656 provisionAccountNow(AccountProvider accountProvider, String realm, String profileSvcResponse, String userPassword, JwtClaimsSet jwtClaims) argument
/forgerock/opendj-v3/opendj-dsml-servlet/src/main/java/org/opends/dsml/protocol/
H A DDSMLServlet.java149 private String userPassword; field in class:DSMLServlet
176 userPassword = config.getServletContext().getInitParameter(USERPWD);
430 if (userPassword != null)
432 bindPassword = userPassword;
/forgerock/openam/openam-authentication/openam-auth-ldap/src/main/java/com/sun/identity/authentication/modules/ldap/
H A DLDAP.java82 private String userPassword; field in class:LDAP
312 userPassword = (String) sharedState.get(getPwdKey());
314 if (userName == null || userPassword == null) {
322 userPassword = charToString(((PasswordCallback)
326 if (userPassword == null || userPassword.length() == 0) {
336 storeUsernamePasswd(userName, userPassword);
341 ldapUtil.authenticateUser(userName, userPassword);
352 validatePassword(userPassword);
537 userPassword
[all...]
/forgerock/openam/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DOAuth.java112 String userPassword = ""; field in class:OAuth
414 userPassword = request.getParameter(PARAM_TOKEN1);
415 validateInput(PARAM_TOKEN1, userPassword, "HTTPParameterValue",
421 if (!userPassword.equals(userPassword2)) {
471 authenticatedUser = provisionAccountNow(accountProvider, realm, profileSvcResponse, userPassword,
675 String userPassword, JwtClaimsSet jwtClaims)
682 attributes.put("userPassword", CollectionUtils.asSet(userPassword));
674 provisionAccountNow(AccountProvider accountProvider, String realm, String profileSvcResponse, String userPassword, JwtClaimsSet jwtClaims) argument
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMLoginModule.java2155 * @param userPassword source string which should be validated.
2160 public void validatePassword(String userPassword) argument
2169 plugin.validatePassword(userPassword);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DAgentsRepo.java1367 private boolean oauth2PasswordMatch(Map attributeMap, String unhashedPassword, String userPassword) { argument
1368 return attributeMap.keySet().contains(oauth2Attribute) && unhashedPassword.equals(userPassword);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/ldap/
H A DLDAPAuthUtils.java111 private String userPassword; field in class:LDAPAuthUtils
394 userPassword = password;
840 LDAPRequests.newSimpleBindRequest(userDN, userPassword.toCharArray());
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMLoginModule.java2161 * @param userPassword source string which should be validated.
2166 public void validatePassword(String userPassword) argument
2175 plugin.validatePassword(userPassword);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DAgentsRepo.java1384 private boolean oauth2PasswordMatch(Map attributeMap, String unhashedPassword, String userPassword) { argument
1385 return attributeMap.keySet().contains(oauth2Attribute) && unhashedPassword.equals(userPassword);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/ldap/
H A DLDAPAuthUtils.java111 private String userPassword; field in class:LDAPAuthUtils
395 userPassword = password;
841 LDAPRequests.newSimpleBindRequest(userDN, userPassword.toCharArray());
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyTestCase.java1642 private final String userPassword = "password"; field in class:LDAPPassThroughAuthenticationPolicyTestCase
1731 state.passwordMatches(ByteString.valueOf(userPassword));
1806 state.passwordMatches(ByteString.valueOf(userPassword));
1903 state.passwordMatches(ByteString.valueOf(userPassword));
1997 new SimpleBindEvent(ceBind3, adDNString, userPassword,
2006 new SimpleBindEvent(ceBind3, adDNString, userPassword,
2024 new SimpleBindEvent(ceBind2ok, adDNString, userPassword,
2050 assertTrue(state.passwordMatches(ByteString.valueOf(userPassword)));
2119 new SimpleBindEvent(ceBind1, adDNString, userPassword,
2149 new SimpleBindEvent(ceBind1, adDNString, userPassword,
[all...]

Completed in 104 milliseconds

12