/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/ |
H A D | OpenAMAuthenticationMethod.java | 29 private final AuthContext.IndexType indexType; field in class:OpenAMAuthenticationMethod 31 public OpenAMAuthenticationMethod(final String name, final AuthContext.IndexType indexType) { argument 32 Reject.ifNull(name, indexType); 34 this.indexType = indexType; 43 return indexType; 57 return indexType.equals(that.indexType) && name.equals(that.name); 63 result = 31 * result + indexType.hashCode(); 69 return String.format("OpenAMAuthenticationMethod [type=%s, name=%s]", indexType, nam [all...] |
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/ |
H A D | OpenAMAuthenticationMethod.java | 29 private final AuthContext.IndexType indexType; field in class:OpenAMAuthenticationMethod 31 public OpenAMAuthenticationMethod(final String name, final AuthContext.IndexType indexType) { argument 32 Reject.ifNull(name, indexType); 34 this.indexType = indexType; 43 return indexType; 57 return indexType.equals(that.indexType) && name.equals(that.name); 63 result = 31 * result + indexType.hashCode(); 69 return String.format("OpenAMAuthenticationMethod [type=%s, name=%s]", indexType, nam [all...] |
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/ |
H A D | AuthIndexType.java | 43 private final AuthContext.IndexType indexType; field in class:AuthIndexType 48 * @param indexType The AuthContext.IndexType for the Enum. 50 private AuthIndexType(AuthContext.IndexType indexType) { argument 51 this.indexType = indexType; 60 return indexType;
|
H A D | LoginAuthenticator.java | 137 AuthIndexType indexType = loginConfiguration.getIndexType(); 141 if (indexType != null && indexType.equals(AuthIndexType.RESOURCE)) { 149 authContext.login(indexType.getIndexType(), indexValue, envMap, null); 150 } else if (indexType != null && indexType.getIndexType() != null) { 151 authContext.login(indexType.getIndexType(), indexValue); 205 * @param indexType The Authentication Index Type for the authentication requirements that must be met. 212 boolean checkSessionUpgrade(SSOToken ssoToken, AuthIndexType indexType, String indexValue) argument 222 switch (indexType) { [all...] |
H A D | LoginConfiguration.java | 31 private AuthIndexType indexType; field in class:LoginConfiguration 80 * @param indexType The Authentication Index Type 83 public LoginConfiguration indexType(AuthIndexType indexType) { argument 84 this.indexType = indexType; 94 return indexType; 108 switch (indexType) {
|
H A D | AuthenticationContext.java | 51 * @param indexType The authentication index type. 55 void login(AuthContext.IndexType indexType, String indexValue) throws AuthLoginException; argument 60 * @param indexType The authentication index type. 66 void login(AuthContext.IndexType indexType, String indexValue, Map<String, Set<String>> envMap, argument
|
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/ |
H A D | AuthIndexType.java | 43 private final AuthContext.IndexType indexType; field in class:AuthIndexType 48 * @param indexType The AuthContext.IndexType for the Enum. 50 private AuthIndexType(AuthContext.IndexType indexType) { argument 51 this.indexType = indexType; 60 return indexType;
|
H A D | LoginAuthenticator.java | 133 AuthIndexType indexType = loginConfiguration.getIndexType(); 137 if (indexType != null && indexType.equals(AuthIndexType.RESOURCE)) { 145 authContext.login(indexType.getIndexType(), indexValue, envMap, null); 146 } else if (indexType != null && indexType.getIndexType() != null) { 147 authContext.login(indexType.getIndexType(), indexValue); 205 * @param indexType The Authentication Index Type for the authentication requirements that must be met. 212 boolean checkSessionUpgrade(SSOToken ssoToken, AuthIndexType indexType, String indexValue) argument 222 switch (indexType) { [all...] |
H A D | LoginConfiguration.java | 31 private AuthIndexType indexType; field in class:LoginConfiguration 80 * @param indexType The Authentication Index Type 83 public LoginConfiguration indexType(AuthIndexType indexType) { argument 84 this.indexType = indexType; 94 return indexType; 108 switch (indexType) {
|
H A D | AuthenticationContext.java | 51 * @param indexType The authentication index type. 55 void login(AuthContext.IndexType indexType, String indexValue) throws AuthLoginException; argument 60 * @param indexType The authentication index type. 66 void login(AuthContext.IndexType indexType, String indexValue, Map<String, Set<String>> envMap, argument
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/config/ |
H A D | AMAuthConfigType.java | 50 private int indexType = 0; field in class:AMAuthConfigType 68 indexType = MODULE; 86 indexType = USER; 102 indexType = ORGANIZATION; 119 indexType = SERVICE; 137 indexType = ROLE; 150 debug.message("indexType = " + indexType + 182 return indexType;
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/ |
H A D | AuthLevel.java | 69 AuthContext.IndexType indexType = null; field in class:AuthLevel 80 * @param indexType <code>IndexType</code> defines the possible kinds of 90 AuthContext.IndexType indexType, 99 this.indexType = indexType; 111 debug.message("indexType : " + indexType); 89 AuthLevel( AuthContext.IndexType indexType, String indexName, String orgDN, String clientType, java.util.Locale loc ) argument
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/ |
H A D | IndexTypeDescriptor.java | 106 private static IndexTypeDescriptor fromBackendIndexType(final BackendIndexCfgDefn.IndexType indexType) argument 108 switch (indexType) 123 throw new IllegalArgumentException("No IndexTypeDescriptor corresponding to: " + indexType); 139 for (final BackendIndexCfgDefn.IndexType indexType : indexTypes) 141 indexTypeDescriptors.add(fromBackendIndexType(indexType)); 180 for (IndexTypeDescriptor indexType : indexTypeDescriptors) 182 newConfigIndexTypes.add(indexType.backendIndexType);
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/config/ |
H A D | AMAuthConfigType.java | 50 private int indexType = 0; field in class:AMAuthConfigType 68 indexType = MODULE; 86 indexType = USER; 102 indexType = ORGANIZATION; 119 indexType = SERVICE; 137 indexType = ROLE; 150 debug.message("indexType = " + indexType + 182 return indexType;
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/ |
H A D | AuthLevel.java | 69 AuthContext.IndexType indexType = null; field in class:AuthLevel 80 * @param indexType <code>IndexType</code> defines the possible kinds of 90 AuthContext.IndexType indexType, 99 this.indexType = indexType; 111 debug.message("indexType : " + indexType); 89 AuthLevel( AuthContext.IndexType indexType, String indexName, String orgDN, String clientType, java.util.Locale loc ) argument
|
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/ |
H A D | Authenticator.java | 60 private static final String DEFINED_INDEX_TYPE = "org.forgerock.openam.ssoadm.auth.indexType"; 106 String indexType = SystemProperties.get(DEFINED_INDEX_TYPE); 108 if (indexType != null && indexName != null) { 109 lc = sessionBasedLoginInternal(mgr, bindUser, bindPwd, indexType, indexName); 129 String indexType, 133 AuthContext lc = getAuthContext(mgr, indexType, indexName); 259 AuthContext.IndexType indexType = null; 261 indexType = AuthContext.IndexType.MODULE_INSTANCE; 263 indexType = AuthContext.IndexType.SERVICE; 265 indexType 125 sessionBasedLoginInternal( CommandManager mgr, String bindUser, String bindPwd, String indexType, String indexName ) argument [all...] |
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/ |
H A D | AuthContextLocalWrapper.java | 72 public void login(AuthContext.IndexType indexType, String indexValue) throws AuthLoginException { argument 73 authContextLocal.login(indexType, indexValue); 80 public void login(AuthContext.IndexType indexType, String indexValue, argument 82 authContextLocal.login(indexType, indexValue, envMap, locale); 122 AuthContext.IndexType indexType = authContextLocal.getLoginState().getIndexType(); 123 if (indexType != null) { 124 return AuthIndexType.getAuthIndexType(indexType.toString());
|
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/ |
H A D | Authenticator.java | 62 private static final String DEFINED_INDEX_TYPE = "org.forgerock.openam.ssoadm.auth.indexType"; 108 String indexType = SystemProperties.get(DEFINED_INDEX_TYPE); 110 if (indexType != null && indexName != null) { 111 lc = sessionBasedLoginInternal(mgr, bindUser, bindPwd, indexType, indexName); 131 String indexType, 135 AuthContext lc = getAuthContext(mgr, indexType, indexName); 261 AuthContext.IndexType indexType = null; 263 indexType = AuthContext.IndexType.MODULE_INSTANCE; 265 indexType = AuthContext.IndexType.SERVICE; 267 indexType 127 sessionBasedLoginInternal( CommandManager mgr, String bindUser, String bindPwd, String indexType, String indexName ) argument [all...] |
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/core/wrappers/ |
H A D | AuthContextLocalWrapper.java | 73 public void login(AuthContext.IndexType indexType, String indexValue) throws AuthLoginException { argument 74 authContextLocal.login(indexType, indexValue); 81 public void login(AuthContext.IndexType indexType, String indexValue, argument 83 authContextLocal.login(indexType, indexValue, envMap, locale); 123 AuthContext.IndexType indexType = authContextLocal.getLoginState().getIndexType(); 124 if (indexType != null) { 125 return AuthIndexType.getAuthIndexType(indexType.toString());
|
/forgerock/opendj2/src/server/org/opends/server/backends/ |
H A D | MemoryBackend.java | 273 public boolean isIndexed(AttributeType attributeType, IndexType indexType) argument
|
H A D | NullBackend.java | 280 public boolean isIndexed(AttributeType attributeType, IndexType indexType) argument
|
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/ |
H A D | MemoryBackend.java | 312 public boolean isIndexed(AttributeType attributeType, IndexType indexType) argument
|
H A D | NullBackend.java | 307 public boolean isIndexed(AttributeType attributeType, IndexType indexType) argument
|
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/ |
H A D | MemoryBackend.java | 312 public boolean isIndexed(AttributeType attributeType, IndexType indexType) argument
|
H A D | NullBackend.java | 307 public boolean isIndexed(AttributeType attributeType, IndexType indexType) argument
|