Searched refs:authInfo (Results 1 - 25 of 269) sorted by relevance

1234567891011

/forgerock/opendj-b2.6/src/server/org/opends/server/core/networkgroups/
H A DAuthMethodConnectionCriteria.java76 AuthenticationInfo authInfo = connection.getAuthenticationInfo();
83 if (!authInfo.isAuthenticated())
89 if (authInfo.hasAuthenticationType(AuthenticationType.SIMPLE))
95 if (authInfo.hasAuthenticationType(AuthenticationType.SASL))
/forgerock/opendj2/src/server/org/opends/server/core/networkgroups/
H A DAuthMethodConnectionCriteria.java75 AuthenticationInfo authInfo = connection.getAuthenticationInfo();
82 if (!authInfo.isAuthenticated())
88 if (authInfo.hasAuthenticationType(AuthenticationType.SIMPLE))
94 if (authInfo.hasAuthenticationType(AuthenticationType.SASL))
/forgerock/opendj2.6.2/src/server/org/opends/server/core/networkgroups/
H A DAuthMethodConnectionCriteria.java76 AuthenticationInfo authInfo = connection.getAuthenticationInfo();
83 if (!authInfo.isAuthenticated())
89 if (authInfo.hasAuthenticationType(AuthenticationType.SIMPLE))
95 if (authInfo.hasAuthenticationType(AuthenticationType.SASL))
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/networkgroups/
H A DAuthMethodConnectionCriteria.java76 AuthenticationInfo authInfo = connection.getAuthenticationInfo();
83 if (!authInfo.isAuthenticated())
89 if (authInfo.hasAuthenticationType(AuthenticationType.SIMPLE))
95 if (authInfo.hasAuthenticationType(AuthenticationType.SASL))
/forgerock/opendj2-hg/src/server/org/opends/server/core/networkgroups/
H A DAuthMethodConnectionCriteria.java75 AuthenticationInfo authInfo = connection.getAuthenticationInfo();
82 if (!authInfo.isAuthenticated())
88 if (authInfo.hasAuthenticationType(AuthenticationType.SIMPLE))
94 if (authInfo.hasAuthenticationType(AuthenticationType.SASL))
/forgerock/opendj2/src/server/org/opends/server/types/
H A DAuthenticationInfo.java518 AuthenticationInfo authInfo = new AuthenticationInfo();
520 authInfo.isAuthenticated = isAuthenticated;
521 authInfo.isRoot = isRoot;
522 authInfo.mustChangePassword = mustChangePassword;
523 authInfo.authenticationEntry = newAuthenticationEntry;
524 authInfo.authorizationEntry = newAuthorizationEntry;
526 authInfo.authenticationType = authenticationType;
527 authInfo.saslMechanism = saslMechanism;
529 return authInfo;
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DAuthenticationInfo.java519 AuthenticationInfo authInfo = new AuthenticationInfo();
521 authInfo.isAuthenticated = isAuthenticated;
522 authInfo.isRoot = isRoot;
523 authInfo.mustChangePassword = mustChangePassword;
524 authInfo.authenticationEntry = newAuthenticationEntry;
525 authInfo.authorizationEntry = newAuthorizationEntry;
527 authInfo.authenticationType = authenticationType;
528 authInfo.saslMechanism = saslMechanism;
530 return authInfo;
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DAuthenticationInfo.java518 AuthenticationInfo authInfo = new AuthenticationInfo();
520 authInfo.isAuthenticated = isAuthenticated;
521 authInfo.isRoot = isRoot;
522 authInfo.mustChangePassword = mustChangePassword;
523 authInfo.authenticationEntry = newAuthenticationEntry;
524 authInfo.authorizationEntry = newAuthorizationEntry;
526 authInfo.authenticationType = authenticationType;
527 authInfo.saslMechanism = saslMechanism;
529 return authInfo;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DAuthenticationInfo.java519 AuthenticationInfo authInfo = new AuthenticationInfo();
521 authInfo.isAuthenticated = isAuthenticated;
522 authInfo.isRoot = isRoot;
523 authInfo.mustChangePassword = mustChangePassword;
524 authInfo.authenticationEntry = newAuthenticationEntry;
525 authInfo.authorizationEntry = newAuthorizationEntry;
527 authInfo.authenticationType = authenticationType;
528 authInfo.saslMechanism = saslMechanism;
530 return authInfo;
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/core/networkgroups/
H A DMockClientConnection.java49 private final AuthenticationInfo authInfo; field in class:MockClientConnection
74 this.authInfo = new AuthenticationInfo();
78 this.authInfo = new AuthenticationInfo(simpleUser, bindDN, true);
82 this.authInfo = new AuthenticationInfo(saslUser, "external", true);
92 return authInfo;
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/core/networkgroups/
H A DMockClientConnection.java50 private final AuthenticationInfo authInfo; field in class:MockClientConnection
75 this.authInfo = new AuthenticationInfo();
79 this.authInfo = new AuthenticationInfo(simpleUser, bindDN, true);
83 this.authInfo = new AuthenticationInfo(saslUser, "external", true);
93 return authInfo;
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/core/networkgroups/
H A DMockClientConnection.java49 private final AuthenticationInfo authInfo; field in class:MockClientConnection
74 this.authInfo = new AuthenticationInfo();
78 this.authInfo = new AuthenticationInfo(simpleUser, bindDN, true);
82 this.authInfo = new AuthenticationInfo(saslUser, "external", true);
92 return authInfo;
/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DAuthenticationInfo.java593 AuthenticationInfo authInfo = new AuthenticationInfo();
595 authInfo.simplePassword = simplePassword;
596 authInfo.isAuthenticated = isAuthenticated;
597 authInfo.isRoot = isRoot;
598 authInfo.mustChangePassword = mustChangePassword;
599 authInfo.authenticationEntry = newAuthenticationEntry;
600 authInfo.authorizationEntry = newAuthorizationEntry;
602 authInfo.authenticationType = authenticationType;
603 authInfo.saslMechanism = saslMechanism;
605 return authInfo;
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DAuthenticationInfo.java593 AuthenticationInfo authInfo = new AuthenticationInfo();
595 authInfo.simplePassword = simplePassword;
596 authInfo.isAuthenticated = isAuthenticated;
597 authInfo.isRoot = isRoot;
598 authInfo.mustChangePassword = mustChangePassword;
599 authInfo.authenticationEntry = newAuthenticationEntry;
600 authInfo.authorizationEntry = newAuthorizationEntry;
602 authInfo.authenticationType = authenticationType;
603 authInfo.saslMechanism = saslMechanism;
605 return authInfo;
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/
H A DAciContainer.java240 private AuthenticationInfo authInfo; field in class:AciContainer
260 this.authInfo = clientConnection.getAuthenticationInfo();
318 * @param authInfo The authentication information to use in the evaluation.
322 AuthenticationInfo authInfo,
327 this.authInfo = authInfo;
328 this.authorizationEntry = authInfo.getAuthorizationEntry();
649 return !authInfo.isAuthenticated();
785 if(authInfo.isAuthenticated()) {
787 if(authInfo
321 AciContainer(Operation operation, Entry e, AuthenticationInfo authInfo, int rights) argument
[all...]
H A DAciLDAPOperationContainer.java73 * @param authInfo The authentication information to use in the evaluation.
77 AuthenticationInfo authInfo,
79 super(operation, e, authInfo, rights);
76 AciLDAPOperationContainer(Operation operation, Entry e, AuthenticationInfo authInfo, int rights) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/
H A DAciContainer.java240 private AuthenticationInfo authInfo; field in class:AciContainer
260 this.authInfo = clientConnection.getAuthenticationInfo();
318 * @param authInfo The authentication information to use in the evaluation.
322 AuthenticationInfo authInfo,
327 this.authInfo = authInfo;
328 this.authorizationEntry = authInfo.getAuthorizationEntry();
649 return !authInfo.isAuthenticated();
785 if(authInfo.isAuthenticated()) {
787 if(authInfo
321 AciContainer(Operation operation, Entry e, AuthenticationInfo authInfo, int rights) argument
[all...]
H A DAciLDAPOperationContainer.java73 * @param authInfo The authentication information to use in the evaluation.
77 AuthenticationInfo authInfo,
79 super(operation, e, authInfo, rights);
76 AciLDAPOperationContainer(Operation operation, Entry e, AuthenticationInfo authInfo, int rights) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DAciContainer.java240 private AuthenticationInfo authInfo; field in class:AciContainer
260 this.authInfo = clientConnection.getAuthenticationInfo();
318 * @param authInfo The authentication information to use in the evaluation.
322 AuthenticationInfo authInfo,
327 this.authInfo = authInfo;
328 this.authorizationEntry = authInfo.getAuthorizationEntry();
649 return !authInfo.isAuthenticated();
785 if(authInfo.isAuthenticated()) {
787 if(authInfo
321 AciContainer(Operation operation, Entry e, AuthenticationInfo authInfo, int rights) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DAnonymousSASLMechanismHandler.java123 AuthenticationInfo authInfo = new AuthenticationInfo();
124 bindOperation.setAuthenticationInfo(authInfo);
/forgerock/opendj2/src/server/org/opends/server/api/
H A DPasswordStorageScheme.java249 * the given authInfo and authValue components.
253 * @param authInfo The authInfo component of the password
268 String authInfo, String authValue);
310 * @param authInfo The authInfo component of the password encoded
324 String authInfo, String authValue)
266 authPasswordMatches( ByteSequence plaintextPassword, String authInfo, String authValue) argument
323 getAuthPasswordPlaintextValue( String authInfo, String authValue) argument
/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DAciLDAPOperationContainer.java71 * @param authInfo The authentication information to use in the evaluation.
75 AuthenticationInfo authInfo,
77 super(operation, e, authInfo, rights);
74 AciLDAPOperationContainer(Operation operation, Entry e, AuthenticationInfo authInfo, int rights) argument
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DAnonymousSASLMechanismHandler.java122 AuthenticationInfo authInfo = new AuthenticationInfo();
123 bindOperation.setAuthenticationInfo(authInfo);
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DPasswordStorageScheme.java250 * the given authInfo and authValue components.
254 * @param authInfo The authInfo component of the password
269 String authInfo, String authValue);
311 * @param authInfo The authInfo component of the password encoded
325 String authInfo, String authValue)
267 authPasswordMatches( ByteSequence plaintextPassword, String authInfo, String authValue) argument
324 getAuthPasswordPlaintextValue( String authInfo, String authValue) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DPasswordStorageScheme.java250 * the given authInfo and authValue components.
254 * @param authInfo The authInfo component of the password
269 String authInfo, String authValue);
311 * @param authInfo The authInfo component of the password encoded
325 String authInfo, String authValue)
267 authPasswordMatches( ByteSequence plaintextPassword, String authInfo, String authValue) argument
324 getAuthPasswordPlaintextValue( String authInfo, String authValue) argument

Completed in 78 milliseconds

1234567891011