Searched refs:getRequirements (Results 1 - 25 of 82) sorted by relevance

1234

/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthenticationContext.java83 Callback[] getRequirements(); method in interface:AuthenticationContext
93 Callback[] getRequirements(boolean noFilter); method in interface:AuthenticationContext
H A DLoginProcess.java74 if ((isLevelOrCompositeIndexType && authContext.getRequirements() == null) || !isLevelOrCompositeIndexType) {
91 return authContext.getRequirements();
105 for (Callback callback : authContext.getRequirements(true)) {
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthenticationContext.java83 Callback[] getRequirements(); method in interface:AuthenticationContext
93 Callback[] getRequirements(boolean noFilter); method in interface:AuthenticationContext
H A DLoginProcess.java76 if ((isMenuBasedAuthentication && authContext.getRequirements() == null) || !isMenuBasedAuthentication) {
93 return authContext.getRequirements();
107 for (Callback callback : authContext.getRequirements(true)) {
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/
H A DAuthContextLocalWrapper.java97 public Callback[] getRequirements() { method in class:AuthContextLocalWrapper
98 return authContextLocal.getRequirements(false);
105 public Callback[] getRequirements(boolean noFilter) { method in class:AuthContextLocalWrapper
106 return authContextLocal.getRequirements(noFilter);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/
H A DAuthContextLocalWrapper.java98 public Callback[] getRequirements() { method in class:AuthContextLocalWrapper
99 return authContextLocal.getRequirements(false);
106 public Callback[] getRequirements(boolean noFilter) { method in class:AuthContextLocalWrapper
107 return authContextLocal.getRequirements(noFilter);
/forgerock/openam-v13/openam-examples/openam-example-clientsdk-war/src/main/java/com/sun/identity/samples/clientsdk/
H A DSampleBase.java51 Callback[] callbacks = lc.getRequirements();
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/util/
H A DAuthUtils.java57 Callback[] callbacks = lc.getRequirements();
/forgerock/openam/openam-examples/openam-example-clientsdk-war/src/main/java/com/sun/identity/samples/clientsdk/
H A DSampleBase.java51 Callback[] callbacks = lc.getRequirements();
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/entitlement/util/
H A DAuthUtils.java57 Callback[] callbacks = lc.getRequirements();
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/core/
H A DLoginProcessTest.java82 given(authContext.getRequirements()).willReturn(null);
98 given(authContext.getRequirements()).willReturn(null);
114 given(authContext.getRequirements()).willReturn(new Callback[0]);
130 given(authContext.getRequirements()).willReturn(new Callback[0]);
165 verify(authContext).getRequirements();
177 given(authContext.getRequirements(true)).willReturn(callbacks);
183 verify(authContext).getRequirements(true);
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/core/
H A DLoginProcessTest.java82 given(authContext.getRequirements()).willReturn(null);
98 given(authContext.getRequirements()).willReturn(null);
114 given(authContext.getRequirements()).willReturn(new Callback[0]);
130 given(authContext.getRequirements()).willReturn(new Callback[0]);
165 verify(authContext).getRequirements();
177 given(authContext.getRequirements(true)).willReturn(callbacks);
183 verify(authContext).getRequirements(true);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/security/
H A DSystemAppTokenProvider.java84 Callback[] callbacks = authContext.getRequirements();
/forgerock/openam/openam-core/src/main/java/com/sun/identity/security/
H A DSystemAppTokenProvider.java84 Callback[] callbacks = authContext.getRequirements();
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DApplicationSSOTokenProvider.java67 Callback[] callbacks = authContext.getRequirements();
/forgerock/openam-v13/openam-examples/openam-example-clientsdk-cli/src/main/java/samples/policy/
H A DTokenUtils.java82 callbacks = ac.getRequirements();
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/xacml/client/
H A DTokenUtils.java81 callbacks = ac.getRequirements();
/forgerock/openam/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/config/flows/
H A DAutoLoginStage.java81 Callback[] callbacks = authContext.getRequirements();
/forgerock/openam/openam-examples/openam-example-clientsdk-cli/src/main/java/samples/policy/
H A DTokenUtils.java82 callbacks = ac.getRequirements();
/forgerock/openam/openam-federation/OpenFM/src/main/java/org/forgerock/openam/saml2/plugins/
H A DDefaultWsFedAuthenticator.java54 Callback[] callbacks = authContext.getRequirements();
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/xacml/client/
H A DTokenUtils.java81 callbacks = ac.getRequirements();
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/internal/
H A DAuthContext.java173 * <code>getRequirements()</code> and <code>submitRequirements()</code>
274 callbacks = this.getRequirements();
565 if (getRequirements() == null)
583 public Callback[] getRequirements() { method in class:AuthContext
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/internal/
H A DAuthContext.java173 * <code>getRequirements()</code> and <code>submitRequirements()</code>
274 callbacks = this.getRequirements();
565 if (getRequirements() == null)
583 public Callback[] getRequirements() { method in class:AuthContext
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DClientAuthenticatorImpl.java140 Callback[] callbacks = lc.getRequirements();
/forgerock/openam-v13/openam-test/src/test/java/com/sun/identity/policy/
H A DTokenUtils.java92 callbacks = ac.getRequirements();

Completed in 36 milliseconds

1234