Searched defs:appl (Results 1 - 8 of 8) sorted by relevance
| /forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/entitlement/ |
| H A D | ShowApplication.java | 66 Application appl = ApplicationManager.getApplication( 71 if (appl == null) { 76 displayAttrs(writer, appl); 88 private void displayAttrs(IOutput writer, Application appl) { argument 89 ApplicationType applType = appl.getApplicationType(); 92 String description = appl.getDescription(); 97 writer.printlnMessage(ATTR_CREATED_BY + "=" + appl.getCreatedBy()); 99 appl.getCreationDate()); 101 appl.getLastModifiedBy()); 103 appl [all...] |
| H A D | ApplicationImpl.java | 112 protected void setApplicationAttributes(Application appl, argument 123 appl.addAllResourceTypeUuids(resourceTypeUuids); 133 appl.setSubjects(subjects); 143 appl.setConditions(conditions); 155 appl.setEntitlementCombiner(entitlementCombiner); 160 appl.setAttributeNames(names); 166 appl.setResourceComparator(resourceComparator); 179 appl.setSaveIndex(saveIndex); 192 appl.setSearchIndex(searchIndex);
|
| /forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/entitlement/ |
| H A D | ShowApplication.java | 79 Application appl = applicationServiceFactory.create(getAdminSubject(), realm).getApplication(appName); 82 if (appl == null) { 87 displayAttrs(writer, appl); 99 private void displayAttrs(IOutput writer, Application appl) { argument 100 ApplicationType applType = appl.getApplicationType(); 103 String description = appl.getDescription(); 108 writer.printlnMessage(ATTR_CREATED_BY + "=" + appl.getCreatedBy()); 110 appl.getCreationDate()); 112 appl.getLastModifiedBy()); 114 appl [all...] |
| H A D | ApplicationImpl.java | 125 protected void setApplicationAttributes(Application appl, argument 136 appl.addAllResourceTypeUuids(resourceTypeUuids); 146 appl.setSubjects(subjects); 156 appl.setConditions(conditions); 168 appl.setEntitlementCombiner(entitlementCombiner); 173 appl.setAttributeNames(names); 179 appl.setResourceComparator(resourceComparator); 192 appl.setSaveIndex(saveIndex); 205 appl.setSearchIndex(searchIndex);
|
| /forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/ |
| H A D | EntitlementService.java | 437 Application appl = getApplicationService(SUPER_ADMIN_SUBJECT, realm).getApplication(applicationName); 438 if (appl != null) { 439 appl.addAttributeNames(names); 592 * @param appl Application object. 596 public void storeApplication(Application appl) argument 601 String dn = getApplicationDN(appl.getName(), realm); 603 s.setAttributes(getApplicationData(appl)); 605 String[] logParams = {realm, appl.getName()}; 612 publishInternalNotifications(appl.getName(), realm); 614 String[] logParams = {realm, appl 694 getApplicationData(Application appl) argument [all...] |
| /forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/ |
| H A D | EntitlementService.java | 447 Application appl = ApplicationManager.getApplication( 449 if (appl != null) { 450 appl.addAttributeNames(names); 666 * @param appl Application object. 669 public void storeApplication(Application appl) argument 674 String dn = getApplicationDN(appl.getName(), realm); 676 s.setAttributes(getApplicationData(appl)); 678 String[] logParams = {realm, appl.getName()}; 690 String[] logParams = {realm, appl.getName(), ex.getMessage()}; 693 Object[] arg = {appl 769 getApplicationData(Application appl) argument 854 getApplicationIndices(Application appl) argument [all...] |
| /forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/opensso/ |
| H A D | OpenSSOApplicationPrivilegeManager.java | 379 private boolean isDelegatableResource(Application appl, String res) { argument 380 Set<String> resources = getDelegatableResourceNames(appl.getName()); 383 ResourceName resComp = appl.getResourceComparator(); 1028 Application appl = ApplicationManager.getApplication( 1030 if (appl == null) { 1033 ResourceName resComp = appl.getResourceComparator(); 1056 Application appl = ApplicationManager.getApplication( 1058 if (appl == null) { 1061 ResourceName resComp = appl.getResourceComparator();
|
| /forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/opensso/ |
| H A D | OpenSSOApplicationPrivilegeManager.java | 380 private boolean isDelegatableResource(Application appl, String res) { argument 381 Set<String> resources = getDelegatableResourceNames(appl.getName()); 384 ResourceName resComp = appl.getResourceComparator(); 1028 Application appl = getApplicationService(SUPER_ADMIN_SUBJECT, realm).getApplication(applName); 1029 if (appl == null) { 1032 ResourceName resComp = appl.getResourceComparator(); 1055 Application appl = getApplicationService(SUPER_ADMIN_SUBJECT, realm).getApplication(applName); 1056 if (appl == null) { 1059 ResourceName resComp = appl.getResourceComparator();
|
Completed in 64 milliseconds