Searched defs:moduleName (Results 1 - 25 of 63) sorted by relevance

123

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/util/
H A DAuthServiceConfigInfo.java50 String moduleName = null; field in class:AuthServiceConfigInfo
56 moduleName = module;
71 return moduleName;
H A DGatewayServletUtils.java48 private static String moduleName = null; field in class:GatewayServletUtils
58 moduleName = module;
157 AMAuthConfigUtils.getAuthLevelAttribute(configAttrs, moduleName));
168 new AuthServiceConfigInfo(orgName, moduleName,
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/authz/
H A DSSOTokenAuthzModule.java44 protected final String moduleName = this.getClass().getSimpleName(); field in class:SSOTokenAuthzModule
91 debug.message("{} :: Unable to authorize user using SSO Token.", moduleName, e);
H A DLoggingAuthzModule.java46 private final String moduleName; field in class:LoggingAuthzModule
51 public LoggingAuthzModule(CrestAuthorizationModule module, String moduleName) { argument
53 this.moduleName = moduleName;
58 return moduleName;
68 module.authorizeCreate(serverContext, createRequest), moduleName);
78 module.authorizeRead(serverContext, readRequest), moduleName);
88 module.authorizeUpdate(serverContext, updateRequest), moduleName);
98 module.authorizeDelete(serverContext, deleteRequest), moduleName);
108 module.authorizePatch(serverContext, patchRequest), moduleName);
[all...]
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/authz/
H A DSSOTokenAuthzModule.java44 protected final String moduleName = this.getClass().getSimpleName(); field in class:SSOTokenAuthzModule
91 debug.message("{} :: Unable to authorize user using SSO Token.", moduleName, e);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/audit/
H A DAuthenticationProcessEventAuditor.java77 String moduleName = null;
80 moduleName = loginState.getAuthModuleNames();
89 .entry(getAuditEntryDetail(moduleName, loginState))
120 String moduleName = loginState == null ? null : loginState.getFailureModuleNames();
121 AuthenticationAuditEntry entryDetail = getAuditEntryDetail(moduleName, loginState);
183 private AuthenticationAuditEntry getAuditEntryDetail(String moduleName, LoginState loginState) { argument
185 entryDetail.setModuleId(moduleName == null ? "" : moduleName);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/util/
H A DAuthServiceConfigInfo.java50 String moduleName = null; field in class:AuthServiceConfigInfo
56 moduleName = module;
71 return moduleName;
H A DGatewayServletUtils.java48 private static String moduleName = null; field in class:GatewayServletUtils
58 moduleName = module;
157 AMAuthConfigUtils.getAuthLevelAttribute(configAttrs, moduleName));
168 new AuthServiceConfigInfo(orgName, moduleName,
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/audit/
H A DAuthenticationProcessEventAuditor.java77 String moduleName = null;
80 moduleName = loginState.getAuthModuleNames();
89 .entry(getAuditEntryDetail(moduleName, loginState))
120 String moduleName = loginState == null ? null : loginState.getFailureModuleNames();
121 AuthenticationAuditEntry entryDetail = getAuditEntryDetail(moduleName, loginState);
183 private AuthenticationAuditEntry getAuditEntryDetail(String moduleName, LoginState loginState) { argument
185 entryDetail.setModuleId(moduleName == null ? "" : moduleName);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMAuthenticationInstance.java48 private String moduleName; field in class:AMAuthenticationInstance
66 moduleName = name;
78 return moduleName;
H A DAuthConfigurationEntry.java127 * @param moduleName module name.
130 public void setLoginModuleName(String moduleName) argument
132 checkModule(moduleName);
133 module = moduleName;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthLevel.java145 String moduleName = (String) iter.next();
146 String localizedName = getModuleLocalizedName(moduleName);
147 moduleMap.put(localizedName,moduleName);
148 modList.addElement(moduleName);
216 * @param moduleName name of module.
219 protected String getModuleLocalizedName(String moduleName) { argument
220 return Locale.getString(rb, moduleName, debug);
H A DCompositeAdvices.java144 String moduleName = (String) iter.next();
145 String localizedName = getModuleLocalizedName(moduleName);
146 moduleMap.put(localizedName,moduleName);
210 * @param moduleName name of module.
213 protected String getModuleLocalizedName(String moduleName) { argument
214 return Locale.getString(rb, moduleName, debug);
H A DPagePropertiesCallback.java52 private String moduleName=null; field in class:PagePropertiesCallback
84 this.moduleName = name;
128 return moduleName;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMModuleProperties.java63 private String moduleName; field in class:AMModuleProperties
190 moduleName = getAttribute(node, "moduleName");
214 callbacks[p] = new PagePropertiesCallback(moduleName,
H A DPagePropertiesCallback.java52 private String moduleName=null; field in class:PagePropertiesCallback
86 this.moduleName = name;
134 return moduleName;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/monitoring/
H A DSsoServerAuthSvcImpl.java186 public void incModuleCounter(String moduleName, boolean success, argument
204 " moduleName = " + moduleName + "\n" +
218 if ((moduleName != null) && (moduleName.length() > 0)) {
219 String rlmAuthInst = rName + "|" + moduleName;
225 "did not find auth module instance for " + moduleName +
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/config/
H A DAMAuthenticationInstance.java48 private String moduleName; field in class:AMAuthenticationInstance
66 moduleName = name;
78 return moduleName;
H A DAuthConfigurationEntry.java127 * @param moduleName module name.
130 public void setLoginModuleName(String moduleName) argument
132 checkModule(moduleName);
133 module = moduleName;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthLevel.java145 String moduleName = (String) iter.next();
146 String localizedName = getModuleLocalizedName(moduleName);
147 moduleMap.put(localizedName,moduleName);
148 modList.addElement(moduleName);
216 * @param moduleName name of module.
219 protected String getModuleLocalizedName(String moduleName) { argument
220 return Locale.getString(rb, moduleName, debug);
H A DCompositeAdvices.java144 String moduleName = (String) iter.next();
145 String localizedName = getModuleLocalizedName(moduleName);
146 moduleMap.put(localizedName,moduleName);
210 * @param moduleName name of module.
213 protected String getModuleLocalizedName(String moduleName) { argument
214 return Locale.getString(rb, moduleName, debug);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMModuleProperties.java66 private String moduleName; field in class:AMModuleProperties
191 moduleName = getAttribute(node, "moduleName");
214 callbacks[p] = new PagePropertiesCallback(moduleName,
/forgerock/openam/openam-core/src/main/java/com/sun/identity/monitoring/
H A DSsoServerAuthSvcImpl.java185 public void incModuleCounter(String moduleName, boolean success, argument
203 " moduleName = " + moduleName + "\n" +
217 if ((moduleName != null) && (moduleName.length() > 0)) {
218 String rlmAuthInst = rName + "|" + moduleName;
224 "did not find auth module instance for " + moduleName +
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DUpgradeOAuth2AuthModulesStep.java75 for (String moduleName : (Set<String>) realmConfig.getSubConfigNames()) {
76 ServiceConfig moduleConfig = realmConfig.getSubConfig(moduleName);
78 check(attributes, ACCOUNT_MAPPER_PROPERTY, DEFAULT_ACCOUNT_MAPPER, realm, moduleName);
79 check(attributes, ATTRIBUTE_MAPPER_PROPERTY, DEFAULT_ATTRIBUTE_MAPPER, realm, moduleName);
95 private void check(Map<String, Set<?>> attributes, String property, String value, String realm, String moduleName) { argument
97 flagModule(affectedRealms, realm, moduleName);
99 flagModule(customisedRealms, realm, moduleName);
103 private void flagModule(Map<String, Set<String>> flags, String realm, String moduleName) { argument
105 flags.get(realm).add(moduleName);
107 flags.put(realm, asSet(moduleName));
[all...]
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/scripting/
H A DScriptedAuthModulesStep.java68 String moduleName; field in class:ScriptedAuthModulesStep.ScriptData
117 private ScriptData getScriptData(String moduleName, Map<String, Set<String>> attributes) throws ScriptException { argument
119 scriptData.moduleName = moduleName;
122 .setName(moduleName + " - Server Side")
123 .setDescription("Server side script for Scripted Module: " + moduleName)
127 DEBUG.message("Captured server script for {}", moduleName);
132 .setName(moduleName + " - Client Side")
133 .setDescription("Client side script for Scripted Module: " + moduleName)
137 DEBUG.message("Captured client script for {}", moduleName);
[all...]

Completed in 92 milliseconds

123