Searched defs:module (Results 51 - 74 of 74) sorted by relevance

123

/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DURLFailoverHelper.java53 public URLFailoverHelper(Module module) { argument
54 super(module);
/forgerock/openam/openam-oauth2/src/test/java/org/forgerock/oauth2/core/
H A DResourceOwnerSessionValidatorTest.java305 + "<#if module??>&module=${module}</#if><#if service??>&service=${service}</#if>"
322 assertThat(e.getRedirectUri().toString()).isEqualTo("http://mylogin.com/login?goto=http%3A%2F%2Fopenam.example.com%3A8080%2Fopenam%2Foauth2%2Fauthorize&acr_values=1+2+3&realm=SUB_REALM&module=AUTHENTICATION_MODULE&service=AUTHENTICATION_CHAIN&locale=LOCALE");
332 + "<#if module??>&module=${module}</#if><#if service??>&service=${service}</#if>"
366 private void mockRequestModule(String module) { argument
367 given(mockOAuth2Request.getParameter("module")).willReturn(module);
[all...]
/forgerock/openam/openam-authentication/openam-auth-persistentcookie/src/main/java/org/forgerock/openam/authentication/modules/persistentcookie/
H A DPersistentCookieModuleWrapper.java77 * @param module The underlying module.
81 protected PersistentCookieModuleWrapper(ServletJwtSessionModule module, AMKeyProvider amKeyProvider) { argument
82 super(module);
150 * underlying Jaspi module.
161 * Calls into the underlying Jaspi module.
173 * Calls into the underlying Jaspi module.
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMAuthenticationManager.java63 * This class provides interfaces to manage authentication module instances.
84 * authentication module instances available to this realm.
87 * @param org The realm in which the module instance management is performed.
118 * Re-initializes the module services.
138 * Returns a Set contains all the module service names that are plugged in
140 * @return Set of String values of the module service names available on
153 * Returns authentication service name of a module.
155 * @param moduleName Name of authentication module.
156 * @return authentication service name of a module.
173 for (String module
799 getServiceName(String module) argument
[all...]
H A DAMConfiguration.java238 * @param name Java Class name for the login module
239 * @return Service name for the login module e.g.
247 // first get the module name based on the class name
263 * @param module Login Module name, e.g. LDAP
264 * @return String class name for the module, e.g.
267 private String getLoginModuleClassName(String module) { argument
268 return AuthD.getAuth().getAuthenticatorForName(module);
356 // module parameters for the organization
388 // add listener for this Login module
553 * Returns module base
563 getModuleBasedConfig(String orgDN, String module, String name, AMAuthenticationManager amAM) argument
[all...]
H A DAMAuthConfigUtils.java100 * module name, flag and options. Empty array of
105 * @return Array of <code>AppConfigurationEntry</code> each contains module
163 // set module & flag
531 * This means user need to pass a required LDAP Login module, then an
532 * optional RADIUS Login module.
586 * Returns module name from complete class name.
590 * @return module name, e.g. "LDAP"
605 * Returns SM service name based on module name
607 * @param module Login module nam
611 getModuleServiceName(String module) argument
618 getNewModuleServiceName(String module) argument
631 getAuthLevelAttribute(Map attrs, String module) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/jaas/
H A DLoginContext.java126 // module invoked in doPrivileged
146 // module invoked in doPrivileged
161 * Attempts to invoke the method described by methodName against each module within the stack.
164 * String method name to be invoked on each module.
181 if (info.module != null) {
182 methods = info.module.getClass().getMethods();
194 info.module = constructor.newInstance(args);
196 methods = info.module.getClass().getMethods();
206 methods[mIndex].invoke(info.module, initArgs);
219 boolean status = (Boolean)methods[mIndex].invoke(info.module, arg
360 private Object module; field in class:LoginContext.ModuleInfo
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/util/
H A DGateway.java70 * The class determines the authentication module required for an URL
210 // which could be auth level or module, or no goto url
218 // If module is Cert, redirect to Cert module URL
311 String module = null;
313 module = service.substring("iPlanetAMAuth".length(),
318 if (authenticators.contains(module)) {
319 utils = addGWServletUtilsToMap(orgName, module);
331 (String orgName, String module) {
333 String authService= AMAuthConfigUtils.getModuleServiceName(module);
330 addGWServletUtilsToMap(String orgName, String module) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMAuthConfigUtils.java98 * module name, flag and options. Empty array of
103 * @return Array of <code>AppConfigurationEntry</code> each contains module
161 // set module & flag
529 * This means user need to pass a required LDAP Login module, then an
530 * optional RADIUS Login module.
591 * Returns module name from complete class name.
595 * @return module name, e.g. "LDAP"
610 * Returns SM service name based on module name
612 * @param module Login module nam
616 getModuleServiceName(String module) argument
623 getNewModuleServiceName(String module) argument
636 getAuthLevelAttribute(Map attrs, String module) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java258 * to SAML2 auth module for further processing. This method is used by
259 * SAML2 auth module only.
405 // when is AllowCreate=false mode the auth module gets here with a
2538 * SAML2 auth module only.
3297 * @param module Module Name.
3304 String org, String module, Map props) {
3306 ipaddr, userid, org, module, props);
3321 * @param module Module Name
3333 String module,
3336 ipaddr, userid, org, module, prop
3301 logAccess(Level lvl, String msgid, String[] data, Object tok, String ipaddr, String userid, String org, String module, Map props) argument
3325 logError( Level lvl, String msgid, String[] data, Object tok, String ipaddr, String userid, String org, String module, Map props) argument
3340 accumulateLogProps( String ipaddr, String userid, String org, String module, Map props) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSAML2Utils.java260 * to SAML2 auth module for further processing. This method is used by
261 * SAML2 auth module only.
2563 * SAML2 auth module only.
3322 * @param module Module Name.
3329 String org, String module, Map props) {
3331 ipaddr, userid, org, module, props);
3346 * @param module Module Name
3358 String module,
3361 ipaddr, userid, org, module, props);
3369 String module,
3326 logAccess(Level lvl, String msgid, String[] data, Object tok, String ipaddr, String userid, String org, String module, Map props) argument
3350 logError( Level lvl, String msgid, String[] data, Object tok, String ipaddr, String userid, String org, String module, Map props) argument
3365 accumulateLogProps( String ipaddr, String userid, String org, String module, Map props) argument
[all...]
/forgerock/opendj-b2.6/resource/dsml/lib/
H A Djaxb1-impl.jarMETA-INF/ META-INF/MANIFEST.MF COPYING.txt META-INF/services/ META-INF/ ...
/forgerock/opendj2-jel-hg/resource/dsml/lib/
H A Djaxb1-impl.jarMETA-INF/ META-INF/MANIFEST.MF COPYING.txt META-INF/services/ META-INF/ ...
/forgerock/opendj2/ext/ant/lib/
H A Dant-contrib-1.0b3.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ...
/forgerock/opendj-b2.6/ext/ant/lib/
H A Dant-contrib-1.0b3.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ...
/forgerock/opendj2.6.2/ext/ant/lib/
H A Dant-contrib-1.0b3.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ...
/forgerock/opendj2-hg/ext/ant/lib/
H A Dant-contrib-1.0b3.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ...
/forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/
H A Dant-contrib-1.0b3.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ...
/forgerock/authenticator-android-v2/app/libs/
H A Dcore-2.3.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/forgerock/opendj2/ext/checkstyle/
H A Dcheckstyle-all-4.1.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ...
/forgerock/opendj-b2.6/ext/checkstyle/
H A Dcheckstyle-all-4.1.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ...
/forgerock/opendj2.6.2/ext/checkstyle/
H A Dcheckstyle-all-4.1.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ...
/forgerock/opendj2-jel-hg/ext/checkstyle/
H A Dcheckstyle-all-4.1.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ...
/forgerock/opendj2-hg/ext/checkstyle/
H A Dcheckstyle-all-4.1.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ANTLRError.class ANTLRError.java package antlr ...

Completed in 144 milliseconds

123