Searched refs:appName (Results 1 - 25 of 58) sorted by relevance

123

/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DLogoutHelper.java89 String appName = parent.getApplicationName(ctx.getHttpServletRequest());
92 getApplicationLogoutHandler(appName);
116 * @param appName Application Name
123 private IJ2EELogoutHandler getApplicationLogoutHandler(String appName) argument
127 if ((appName != null) && (appName.length() > 0)) {
128 localLogoutHandlerClass = getApplicationLogoutHandlers().get(appName);
133 AmFilterTaskHandler.CONFIG_LOGOUT_APPLICATION_HANDLER_MAP, appName);
141 getApplicationLogoutHandlers().put(appName, localLogoutHandlerClass);
145 + appName
[all...]
H A DApplicationLogoutHandler.java113 String appName = getApplicationName(request);
115 CONFIG_LOGOUT_ENTRY_URI_MAP, appName);
119 + "specified for app: " + appName
132 String appName = null;
136 appName = getApplicationName(request);
139 result = matchLogoutURI(request, appName);
143 result = searchForLogoutParam(request, appName);
164 String appName) {
167 CONFIG_LOGOUT_REQUEST_PARAM_MAP, appName);
187 + appName
163 searchForLogoutParam(HttpServletRequest request, String appName) argument
214 getLogoutParamMatchResult(String logoutParam, String queryString, String appName) argument
240 matchLogoutURI(HttpServletRequest request, String appName) argument
275 getApplicationConfigurationString(HttpServletRequest request, String id, String appName) argument
[all...]
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/entitlement/
H A DCreateApplication.java61 String appName = getStringOptionValue(PARAM_APPL_NAME);
75 String[] params = {realm, appName};
79 Application appl = ApplicationManager.newApplication(appName, applicationType);
83 String[] param = {appName};
90 String[] paramExs = {realm, appName, e.getMessage()};
95 String[] paramExs = {realm, appName, e.getMessage()};
H A DSetApplication.java59 String appName = getStringOptionValue(PARAM_APPL_NAME);
71 String[] params = {realm, appName};
78 realm, appName);
79 Object[] param = {appName};
95 String[] paramExs = {realm, appName, e.getMessage()};
100 String[] paramExs = {realm, appName, e.getMessage()};
H A DShowApplication.java60 String appName = getStringOptionValue(PARAM_APPL_NAME);
62 String[] params = {realm, appName};
68 realm, appName);
72 Object[] param = {appName};
81 String[] paramsEx = {realm, appName, ex.getMessage()};
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/entitlement/
H A DCreateApplication.java76 String appName = getStringOptionValue(PARAM_APPL_NAME);
90 String[] params = {realm, appName};
94 Application appl = EntitlementUtils.newApplication(appName, applicationType);
98 String[] param = {appName};
105 String[] paramExs = {realm, appName, e.getMessage()};
110 String[] paramExs = {realm, appName, e.getMessage()};
H A DSetApplication.java75 String appName = getStringOptionValue(PARAM_APPL_NAME);
87 String[] params = {realm, appName};
93 Application appl = applicationServiceFactory.create(adminSubject, realm).getApplication(appName);
94 Object[] param = {appName};
110 String[] paramExs = {realm, appName, e.getMessage()};
115 String[] paramExs = {realm, appName, e.getMessage()};
H A DShowApplication.java73 String appName = getStringOptionValue(PARAM_APPL_NAME);
75 String[] params = {realm, appName};
79 Application appl = applicationServiceFactory.create(getAdminSubject(), realm).getApplication(appName);
83 Object[] param = {appName};
92 String[] paramsEx = {realm, appName, ex.getMessage()};
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/policy/
H A DUpgradeResourceTypeStep.java111 private String appName; field in class:UpgradeResourceTypeStep.ResourceTypeState
167 for (String appName : appNames) {
168 if (removedDefaultApplications.contains(appName)) {
173 states.add(extractResourceTypeStateInformation(realm, appName, appConfig));
183 String appName, ServiceConfig appConfig) throws UpgradeException {
186 Map<String, Set<String>> appData = getApplicationData(appConfig, appName);
188 if (applicationEligibleForUpgrade(realm, appName, appData)) {
192 state.appName = appName;
193 state.policyNames = policiesEligibleForUpgrade(appName, real
182 extractResourceTypeStateInformation(String realm, String appName, ServiceConfig appConfig) argument
284 applicationEligibleForUpgrade(String realm, String appName, Map<String, Set<String>> appData) argument
298 policiesEligibleForUpgrade(String appName, String realm) argument
384 upgradeApplication(EntitlementConfiguration ec, String appName, String resourceTypeUUID) argument
404 upgradePrivileges(PrivilegeManager pm, String appName, String resourceTypeUUID) argument
460 getApplicationData(ServiceConfig appConfig, String appName) argument
[all...]
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/policy/
H A DUpgradeResourceTypeStep.java107 private String appName; field in class:UpgradeResourceTypeStep.ResourceTypeState
165 for (String appName : appNames) {
166 if (removedDefaultApplications.contains(appName)) {
171 states.add(extractResourceTypeStateInformation(realm, appName, appConfig));
181 String appName, ServiceConfig appConfig) throws UpgradeException {
184 Map<String, Set<String>> appData = getApplicationData(appConfig, appName);
186 if (applicationEligibleForUpgrade(realm, appName, appData)) {
190 state.appName = appName;
191 state.policyNames = policiesEligibleForUpgrade(appName, real
180 extractResourceTypeStateInformation(String realm, String appName, ServiceConfig appConfig) argument
283 applicationEligibleForUpgrade(String realm, String appName, Map<String, Set<String>> appData) argument
297 policiesEligibleForUpgrade(String appName, String realm) argument
383 upgradeApplication(EntitlementConfiguration ec, String appName, String resourceTypeUUID) argument
403 upgradePrivileges(PrivilegeManager pm, String appName, String resourceTypeUUID) argument
459 getApplicationData(ServiceConfig appConfig, String appName) argument
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-windowsdesktopsso/src/main/java/com/sun/identity/authentication/modules/windowsdesktopsso/
H A DWindowsDesktopSSOConfig.java88 * Returns AppConfigurationEntry array for the application <I>appName</I>
91 * @param appName
94 public AppConfigurationEntry[] getAppConfigurationEntry(String appName){ argument
95 if (appName.equals(defaultAppName)) {
117 return config.getAppConfigurationEntry(appName);
/forgerock/openam/openam-authentication/openam-auth-windowsdesktopsso/src/main/java/com/sun/identity/authentication/modules/windowsdesktopsso/
H A DWindowsDesktopSSOConfig.java88 * Returns AppConfigurationEntry array for the application <I>appName</I>
91 * @param appName
94 public AppConfigurationEntry[] getAppConfigurationEntry(String appName){ argument
95 if (appName.equals(defaultAppName)) {
117 return config.getAppConfigurationEntry(appName);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DEntitlementListener.java172 for (String appName : l.mapAppToRes.keySet()) {
173 Set<String> res = mapAppToRes.get(appName);
176 mapAppToRes.put(appName, res);
178 res.addAll(l.mapAppToRes.get(appName));
H A DPrivilegeChangeNotifier.java140 for (String appName : map.keySet()) {
142 if (appName.equals(applicationName)) {
143 Set<String> res = map.get(appName);
150 PolicyConstants.SUPER_ADMIN_SUBJECT, realm, appName);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DEntitlementListener.java172 for (String appName : l.mapAppToRes.keySet()) {
173 Set<String> res = mapAppToRes.get(appName);
176 mapAppToRes.put(appName, res);
178 res.addAll(l.mapAppToRes.get(appName));
H A DPrivilegeChangeNotifier.java145 for (String appName : map.keySet()) {
147 if (appName.equals(applicationName)) {
148 Set<String> res = map.get(appName);
154 Application app = getApplicationService(SUPER_ADMIN_SUBJECT, realm).getApplication(appName);
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/realm/
H A DAmRealmBase.java130 private void logAllow(String userName, SSOToken ssoToken, String appName) argument
135 new Object[] { userName, appName });
139 private void logDeny(String userName, SSOToken ssoToken, String appName) argument
144 new Object[] { userName, appName });
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthSchemeCondition.java98 private String appName = null; field in class:AuthSchemeCondition
189 + ", appName=" + appName
250 + ", appName=" + appName
478 appName = null;
482 appName = (String)(appNameSet.iterator().next());
483 appName = appName.trim();
484 if (appName
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthSchemeCondition.java98 private String appName = null; field in class:AuthSchemeCondition
189 + ", appName=" + appName
250 + ", appName=" + appName
478 appName = null;
482 appName = (String)(appNameSet.iterator().next());
483 appName = appName.trim();
484 if (appName
[all...]
/forgerock/openam-v13/openam-scripting/src/main/js/
H A DdeviceIdMatch-client-side.js123 if (navigator.appName) {
124 devicePrint.appName = navigator.appName;
/forgerock/openam/openam-scripting/src/main/js/
H A DdeviceIdMatch-client-side.js123 if (navigator.appName) {
124 devicePrint.appName = navigator.appName;
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/
H A DApplicationsResource.java180 String appName = wrapp.getApplication().getName();
181 if (!appName.equals(DN.escapeAttributeValue(appName))) {
183 new Object[]{"policy name \"" + appName + "\""});
186 previousApp = appManager.getApplication(callingSubject, realm, appName);
193 Application savedApp = appManager.getApplication(callingSubject, realm, appName);
353 for (String appName : appNames) {
354 final Application application = appManager.getApplication(mySubject, realm, appName);
357 debug.warning("Unable to find application " + appName);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/internal/
H A DAuthContext.java350 String appName = null;
365 // get past the "/" after the orgName; look for appName
378 // parameters specified; pick off appName first
380 appName = subsample.substring(0, i2);
390 // Only appName was provided, no user name and
393 appName = subsample;
397 // no appName, just OrgName and "/" at the end
399 appName = null;
407 if (appName != null) {
408 applicationName = appName;
[all...]
/forgerock/jee-agents-v3.5/jee-agents-websphere/jee-agents-websphere-common/src/main/java/com/sun/identity/agents/websphere/
H A DAmIdentityAsserterBase.java275 String appName = getApplicationName(request);
276 String accessDeniedURI = getAccessDeniedURI(appName);
343 String appName = null;
348 appName = AgentConfiguration.DEFAULT_WEB_APPLICATION_NAME;
350 appName = contextPath.substring(1);
353 return appName;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/internal/
H A DAuthContext.java350 String appName = null;
365 // get past the "/" after the orgName; look for appName
378 // parameters specified; pick off appName first
380 appName = subsample.substring(0, i2);
390 // Only appName was provided, no user name and
393 appName = subsample;
397 // no appName, just OrgName and "/" at the end
399 appName = null;
407 if (appName != null) {
408 applicationName = appName;
[all...]

Completed in 75 milliseconds

123