Searched refs:getIndexType (Results 1 - 25 of 88) sorted by relevance

1234

/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthIndexTypeTest.java73 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
86 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
99 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
112 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
125 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
138 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
151 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
164 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
H A DLoginProcessTest.java66 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.NONE);
81 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.LEVEL);
97 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.COMPOSITE);
113 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.LEVEL);
129 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.COMPOSITE);
145 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.NONE);
193 given(authContext.getIndexType()).willReturn(AuthIndexType.USER);
209 given(authContext.getIndexType()).willReturn(null);
210 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.MODULE);
229 given(authContext.getIndexType())
[all...]
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthIndexTypeTest.java74 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
87 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
100 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
113 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
126 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
139 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
152 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
165 AuthContext.IndexType authContextIndexType = authIndexType.getIndexType();
H A DLoginProcessTest.java66 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.NONE);
81 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.LEVEL);
97 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.COMPOSITE);
113 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.LEVEL);
129 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.COMPOSITE);
145 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.NONE);
193 given(authContext.getIndexType()).willReturn(AuthIndexType.USER);
209 given(authContext.getIndexType()).willReturn(null);
210 given(loginConfiguration.getIndexType()).willReturn(AuthIndexType.MODULE);
229 given(authContext.getIndexType())
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthIndexType.java59 public AuthContext.IndexType getIndexType() { method in class:AuthIndexType
78 if (indexTypeString.toLowerCase().equals(authIndexType.getIndexType().toString())) {
H A DLoginProcess.java71 boolean isLevelOrCompositeIndexType = AuthIndexType.LEVEL.equals(loginConfiguration.getIndexType())
72 || AuthIndexType.COMPOSITE.equals(loginConfiguration.getIndexType());
126 AuthIndexType indexType = authContext.getIndexType();
128 indexType = loginConfiguration.getIndexType();
H A DLoginAuthenticator.java137 AuthIndexType indexType = loginConfiguration.getIndexType();
149 authContext.login(indexType.getIndexType(), indexValue, envMap, null);
150 } else if (indexType != null && indexType.getIndexType() != null) {
151 authContext.login(indexType.getIndexType(), indexValue);
193 isSessionUpgrade = checkSessionUpgrade(ssoToken, loginConfiguration.getIndexType(),
273 !checkSessionUpgrade(ssoToken, loginConfiguration.getIndexType(), loginConfiguration.getIndexValue())
H A DAuthenticationContext.java107 AuthIndexType getIndexType(); method in interface:AuthenticationContext
H A DLoginConfiguration.java93 public AuthIndexType getIndexType() { method in class:LoginConfiguration
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/
H A DAuthIndexType.java59 public AuthContext.IndexType getIndexType() { method in class:AuthIndexType
78 if (indexTypeString.toLowerCase().equals(authIndexType.getIndexType().toString())) {
H A DLoginAuthenticator.java133 AuthIndexType indexType = loginConfiguration.getIndexType();
145 authContext.login(indexType.getIndexType(), indexValue, envMap, null);
146 } else if (indexType != null && indexType.getIndexType() != null) {
147 authContext.login(indexType.getIndexType(), indexValue);
193 isSessionUpgrade = checkSessionUpgrade(ssoToken, loginConfiguration.getIndexType(),
273 !checkSessionUpgrade(ssoToken, loginConfiguration.getIndexType(), loginConfiguration.getIndexValue())
H A DLoginProcess.java72 AuthIndexType.LEVEL.equals(loginConfiguration.getIndexType()) || AuthIndexType.COMPOSITE
73 .equals(loginConfiguration.getIndexType()) || AuthIndexType.RESOURCE
74 .equals(loginConfiguration.getIndexType());
128 AuthIndexType indexType = authContext.getIndexType();
130 indexType = loginConfiguration.getIndexType();
H A DAuthenticationContext.java107 AuthIndexType getIndexType(); method in interface:AuthenticationContext
H A DLoginConfiguration.java93 public AuthIndexType getIndexType() { method in class:LoginConfiguration
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMAuthenticationMethod.java42 public AuthContext.IndexType getIndexType() { method in class:OpenAMAuthenticationMethod
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/
H A DAuthIdHelper.java97 if (loginConfiguration.getIndexType().getIndexType() != null && loginConfiguration.getIndexValue() != null) {
99 escapeJsonString(loginConfiguration.getIndexType().getIndexType().toString()));
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMAuthenticationMethod.java42 public AuthContext.IndexType getIndexType() { method in class:OpenAMAuthenticationMethod
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/
H A DAuthIdHelper.java97 if (loginConfiguration.getIndexType().getIndexType() != null && loginConfiguration.getIndexValue() != null) {
99 escapeJsonString(loginConfiguration.getIndexType().getIndexType().toString()));
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/
H A DAuthContextLocalWrapper.java121 public AuthIndexType getIndexType() { method in class:AuthContextLocalWrapper
122 AuthContext.IndexType indexType = authContextLocal.getLoginState().getIndexType();
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/
H A DAuthContextLocalWrapper.java122 public AuthIndexType getIndexType() { method in class:AuthContextLocalWrapper
123 AuthContext.IndexType indexType = authContextLocal.getLoginState().getIndexType();
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java159 if (indexConfig.getIndexType().contains(
180 if (indexConfig.getIndexType().contains(
194 if (indexConfig.getIndexType().contains(
216 if (indexConfig.getIndexType().contains(
236 if (indexConfig.getIndexType().contains(
256 if (indexConfig.getIndexType().contains(
1775 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.EQUALITY))
1786 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.SUBSTRING))
1798 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.ORDERING))
1808 if (cfg.getIndexType()
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java159 if (indexConfig.getIndexType().contains(
180 if (indexConfig.getIndexType().contains(
194 if (indexConfig.getIndexType().contains(
216 if (indexConfig.getIndexType().contains(
236 if (indexConfig.getIndexType().contains(
256 if (indexConfig.getIndexType().contains(
1772 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.EQUALITY))
1783 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.SUBSTRING))
1795 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.ORDERING))
1805 if (cfg.getIndexType()
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java159 if (indexConfig.getIndexType().contains(
180 if (indexConfig.getIndexType().contains(
194 if (indexConfig.getIndexType().contains(
216 if (indexConfig.getIndexType().contains(
236 if (indexConfig.getIndexType().contains(
256 if (indexConfig.getIndexType().contains(
1773 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.EQUALITY))
1784 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.SUBSTRING))
1796 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.ORDERING))
1806 if (cfg.getIndexType()
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java159 if (indexConfig.getIndexType().contains(
180 if (indexConfig.getIndexType().contains(
194 if (indexConfig.getIndexType().contains(
216 if (indexConfig.getIndexType().contains(
236 if (indexConfig.getIndexType().contains(
256 if (indexConfig.getIndexType().contains(
1775 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.EQUALITY))
1786 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.SUBSTRING))
1798 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.ORDERING))
1808 if (cfg.getIndexType()
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java159 if (indexConfig.getIndexType().contains(
180 if (indexConfig.getIndexType().contains(
194 if (indexConfig.getIndexType().contains(
216 if (indexConfig.getIndexType().contains(
236 if (indexConfig.getIndexType().contains(
256 if (indexConfig.getIndexType().contains(
1772 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.EQUALITY))
1783 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.SUBSTRING))
1795 if (cfg.getIndexType().contains(LocalDBIndexCfgDefn.IndexType.ORDERING))
1805 if (cfg.getIndexType()
[all...]

Completed in 81 milliseconds

1234