/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/ |
H A D | SuffixResourceName.java | 286 * @param superResource name of the super-resource to be appended to 291 public String append(String superResource, String subResource) { argument 293 return subResource + delimiter + superResource; 302 * the second parameter superResource and the returned value 303 * @param superResource name of the super-resource which the first 310 public String getSubResource(String resource, String superResource) { argument 312 if ( !superResource.startsWith(delimiter) ) { 313 superResource = delimiter + superResource; 315 if (resource.endsWith(superResource)) { [all...] |
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/shared/resourcename/ |
H A D | BaseResourceName.java | 86 * @param superResource name of the super-resource to be appended to. 91 String append(String superResource, String subResource); argument
|
H A D | BasePrefixResourceName.java | 576 * @param superResource name of the super-resource to be appended to 581 public String append(String superResource, String subResource) { argument 583 if (superResource.endsWith(delimiter) && subResource.startsWith(delimiter)) { 584 superResource = superResource.substring(0, 585 superResource.length() - 1); 588 if (!superResource.endsWith(delimiter) && !subResource.startsWith(delimiter)) { 592 return superResource + subResource; 601 * the second parameter superResource and the returned value 602 * @param superResource nam 609 getSubResource(String resource, String superResource) argument [all...] |
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/ |
H A D | ExactMatchResourceName.java | 97 public String getSubResource(String resource, String superResource) { argument 101 public String append(String superResource, String subResource) { argument 102 return superResource + subResource;
|
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/shared/resourcename/ |
H A D | BaseResourceName.java | 86 * @param superResource name of the super-resource to be appended to. 91 String append(String superResource, String subResource); argument
|
H A D | BasePrefixResourceName.java | 576 * @param superResource name of the super-resource to be appended to 581 public String append(String superResource, String subResource) { argument 583 if (superResource.endsWith(delimiter) && subResource.startsWith(delimiter)) { 584 superResource = superResource.substring(0, 585 superResource.length() - 1); 588 if (!superResource.endsWith(delimiter) && !subResource.startsWith(delimiter)) { 592 return superResource + subResource; 601 * the second parameter superResource and the returned value 602 * @param superResource nam 609 getSubResource(String resource, String superResource) argument [all...] |
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/ |
H A D | SuffixResourceName.java | 286 * @param superResource name of the super-resource to be appended to 291 public String append(String superResource, String subResource) { argument 293 return subResource + delimiter + superResource; 302 * the second parameter superResource and the returned value 303 * @param superResource name of the super-resource which the first 310 public String getSubResource(String resource, String superResource) { argument 312 if ( !superResource.startsWith(delimiter) ) { 313 superResource = delimiter + superResource; 315 if (resource.endsWith(superResource)) { [all...] |
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/ |
H A D | ExactMatchResourceName.java | 97 public String getSubResource(String resource, String superResource) { argument 101 public String append(String superResource, String subResource) { argument 102 return superResource + subResource;
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/ |
H A D | RegExResourceName.java | 107 public String append(String superResource, String subResource) { argument 109 if (superResource.endsWith(delimiter) && 112 superResource = superResource.substring(0, 113 superResource.length() -1); 116 if (!superResource.endsWith(delimiter) && 122 return superResource+subResource; 125 public String getSubResource(String resource, String superResource) { argument 126 if (!superResource.endsWith(delimiter)) { 127 superResource [all...] |
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/ |
H A D | RegExResourceName.java | 105 public String append(String superResource, String subResource) { argument 107 if (superResource.endsWith(delimiter) && 110 superResource = superResource.substring(0, 111 superResource.length() -1); 114 if (!superResource.endsWith(delimiter) && 120 return superResource+subResource; 123 public String getSubResource(String resource, String superResource) { argument 124 if (!superResource.endsWith(delimiter)) { 125 superResource [all...] |
/forgerock/openam-v13/openam-upgrade/src/test/java/org/forgerock/openam/upgrade/steps/ |
H A D | UpgradeEntitlementSubConfigsStepTest.java | 431 public String append(String superResource, String subResource) { argument
|
/forgerock/openam/openam-upgrade/src/test/java/org/forgerock/openam/upgrade/steps/ |
H A D | UpgradeEntitlementSubConfigsStepTest.java | 441 public String append(String superResource, String subResource) { argument
|