Searched refs:parentPath (Results 1 - 25 of 87) sorted by relevance

1234

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DResourceSaveIndexes.java39 private Set<String> parentPath = new HashSet<String>(); field in class:ResourceSaveIndexes
46 * @param parentPath Set of parent path indexes.
51 Set<String> parentPath
59 if (parentPath != null) {
60 this.parentPath.addAll(parentPath);
79 return parentPath;
99 this.parentPath.addAll(other.parentPath);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DResourceSaveIndexes.java39 private Set<String> parentPath = new HashSet<String>(); field in class:ResourceSaveIndexes
46 * @param parentPath Set of parent path indexes.
51 Set<String> parentPath
59 if (parentPath != null) {
60 this.parentPath.addAll(parentPath);
79 return parentPath;
99 this.parentPath.addAll(other.parentPath);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/services/global/
H A DRealmsService.js31 if (realm.parentPath === "/") {
32 return realm.parentPath + realm.name;
33 } else if (realm.parentPath) {
34 return `${realm.parentPath}/${realm.name}`;
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/utils/
H A DRealmUtils.java72 public static boolean isParentRealm(String parentPath, String path) { argument
73 parentPath = normalizeRealm(parentPath).toLowerCase();
76 if (path.startsWith(parentPath)) {
77 path = path.substring(parentPath.length());
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/utils/
H A DRealmUtils.java72 public static boolean isParentRealm(String parentPath, String path) { argument
73 parentPath = normalizeRealm(parentPath).toLowerCase();
76 if (path.startsWith(parentPath)) {
77 path = path.substring(parentPath.length());
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/delegates/
H A DSMSGlobalDelegate.js67 if (realm.parentPath === "/") {
68 return realm.parentPath + realm.name;
69 } else if (realm.parentPath) {
70 return realm.parentPath + "/" + realm.name;
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/
H A DCreateUpdateRealmDialog.js69 * realmPath : realm.parentPath,
107 if (realm.parentPath) {
108 options.allRealmPaths.push(realm.parentPath);
115 data.schema.properties.parentPath["enum"] = options.allRealmPaths;
116 data.schema.properties.parentPath.options = { "enum_titles": options.allRealmPaths };
121 data.schema.properties.parentPath.readonly = true;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/util/
H A DResourceNameSplitter.java68 Set<String> parentPath = new HashSet<String>();
69 parentPath.add(path);
71 parentPath);
81 Set<String> parentPath = new HashSet<String>();
82 parentPath.add(resName);
83 return new ResourceSearchIndexes(setHost, setPath, parentPath);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/util/
H A DResourceNameSplitter.java68 Set<String> parentPath = new HashSet<String>();
69 parentPath.add(path);
71 parentPath);
81 Set<String> parentPath = new HashSet<String>();
82 parentPath.add(resName);
83 return new ResourceSearchIndexes(setHost, setPath, parentPath);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/
H A DEditRealmView.js130 data.schema.properties.parentPath["enum"] = allRealmPaths;
131 data.schema.properties.parentPath.options = { "enum_titles": allRealmPaths };
136 data.schema.properties.parentPath.readonly = true;
197 const hasRootRealmAsParent = realm.parentPath === "/";
205 realmPath = `${realm.parentPath}/${realm.name}`;
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsRealmProvider.java131 protected static final String PATH_ATTRIBUTE_NAME = "parentPath";
365 String parentPath = null;
367 parentPath = "/";
369 parentPath = realmPath.substring(0, pathLastSlash);
371 return getJsonValue(realmManager, realmName, parentPath, realmPath);
374 private JsonValue getJsonValue(OrganizationConfigManager realmManager, String realmName, String parentPath, argument
379 field(PATH_ATTRIBUTE_NAME, parentPath),
528 String parentPath = jsonContent.get(PATH_ATTRIBUTE_NAME).asString();
529 String fullPath = parentPath.equals("/") ? parentPath
620 getJsonValue(String realmPath, String parentPath) argument
[all...]
H A DSmsRequestHandler.java492 * @param parentPath The parent route path to add new routes beneath.
503 private void addGlobalPaths(String parentPath, List<ServiceSchema> schemaPath, ServiceSchema globalSchema, argument
508 String path = updatePaths(parentPath, schemaName, schemaPath, globalSchema);
512 parentPath, true);
542 * @param parentPath The parent route path to add new routes beneath.
552 private void addPaths(String parentPath, List<ServiceSchema> schemaPath, ServiceSchema schema, argument
556 String path = updatePaths(parentPath, schemaName, schemaPath, schema);
562 parentPath, true));
565 parentPath = "/{" + schemaName + "}";
569 parentPath, tru
579 addPaths(String parentPath, List<ServiceSchema> schemaPath, ServiceSchema schema, Map<SmsRouteTree, Set<RouteMatcher<Request>>> serviceRoutes, Pattern ignoredRoutes, SmsRouteTree routeTree) argument
593 updatePaths(String parentPath, String schemaName, List<ServiceSchema> schemaPath, ServiceSchema schema) argument
[all...]
/forgerock/opendj-v3/opendj-config/src/test/java/org/forgerock/opendj/config/server/
H A DDNBuilderTest.java61 ManagedObjectPath<?, ?> parentPath = ManagedObjectPath.emptyPath().
63 ManagedObjectPath<?, ?> childPath = parentPath.child(TestParentCfgDefn.getInstance().
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/sms/
H A DSmsRealmProviderTest.java69 private JsonValue parentPath; field in class:SmsRealmProviderTest
97 when(parentPath.isNotNull()).thenReturn(true);
98 when(parentPath.asString()).thenReturn("parent");
110 when(createContent.get(PATH_ATTRIBUTE_NAME)).thenReturn(parentPath);
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/sms/
H A DSmsRequestHandler.java485 * @param parentPath The parent route path to add new routes beneath.
496 private void addGlobalPaths(String parentPath, List<ServiceSchema> schemaPath, ServiceSchema globalSchema, argument
500 String path = getPath(parentPath, schemaName, schemaPath, globalSchema);
504 parentPath, true);
509 addPaths(parentPath, schemaPath, globalSchema, serviceRoutes, ignoredRoutes, routeTree);
533 * @param parentPath The parent route path to add new routes beneath.
543 private void addPaths(String parentPath, List<ServiceSchema> schemaPath, ServiceSchema schema, argument
547 String path = getPath(parentPath, schemaName, schemaPath, schema);
552 parentPath, true));
555 parentPath
569 addPaths(String parentPath, List<ServiceSchema> schemaPath, ServiceSchema schema, Map<SmsRouteTree, Set<RouteMatcher<Request>>> serviceRoutes, List<Pattern> ignoredRoutes, SmsRouteTree routeTree) argument
578 getPath(String parentPath, String schemaName, List<ServiceSchema> schemaPath, ServiceSchema schema) argument
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/task/
H A DNewEntryTask.java372 TreePath parentPath =
374 if (parentPath != null)
377 controller.getNodeInfoFromPath(parentPath);
388 controller.getNodeInfoFromPath(parentPath), dn.toString());
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/task/
H A DNewEntryTask.java371 TreePath parentPath =
373 if (parentPath != null)
376 controller.getNodeInfoFromPath(parentPath);
387 controller.getNodeInfoFromPath(parentPath), dn.toString());
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/task/
H A DNewEntryTask.java372 TreePath parentPath =
374 if (parentPath != null)
377 controller.getNodeInfoFromPath(parentPath);
388 controller.getNodeInfoFromPath(parentPath), dn.toString());
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/task/
H A DNewEntryTask.java371 TreePath parentPath =
373 if (parentPath != null)
376 controller.getNodeInfoFromPath(parentPath);
387 controller.getNodeInfoFromPath(parentPath), dn.toString());
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/task/
H A DNewEntryTask.java372 TreePath parentPath =
374 if (parentPath != null)
377 controller.getNodeInfoFromPath(parentPath);
388 controller.getNodeInfoFromPath(parentPath), dn.toString());
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/task/
H A DNewEntryTask.java347 TreePath parentPath =
349 if (parentPath != null)
352 controller.getNodeInfoFromPath(parentPath);
363 controller.getNodeInfoFromPath(parentPath), dn.toString());
/forgerock/opendj2/src/server/org/opends/server/admin/
H A DAggregationPropertyDefinition.java476 ManagedObjectPath<?, ?> parentPath = getParentPath();
477 ServerManagedObject<?> parent = context.getManagedObject(parentPath);
529 ManagedObjectPath<?, ?> parentPath = getParentPath();
530 ServerManagedObject<?> parent = context.getManagedObject(parentPath);
858 private ManagedObjectPath<?, ?> parentPath; field in class:AggregationPropertyDefinition
987 return parentPath.child(relationDefinition, name);
1000 return parentPath;
1112 Reference<C, S> reference = Reference.parseName(parentPath,
1129 builder.append(" parentPath=");
1130 builder.append(parentPath);
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DAggregationPropertyDefinition.java477 ManagedObjectPath<?, ?> parentPath = getParentPath();
478 ServerManagedObject<?> parent = context.getManagedObject(parentPath);
530 ManagedObjectPath<?, ?> parentPath = getParentPath();
531 ServerManagedObject<?> parent = context.getManagedObject(parentPath);
859 private ManagedObjectPath<?, ?> parentPath; field in class:AggregationPropertyDefinition
988 return parentPath.child(relationDefinition, name);
1001 return parentPath;
1113 Reference<C, S> reference = Reference.parseName(parentPath,
1130 builder.append(" parentPath=");
1131 builder.append(parentPath);
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DAggregationPropertyDefinition.java477 ManagedObjectPath<?, ?> parentPath = getParentPath();
478 ServerManagedObject<?> parent = context.getManagedObject(parentPath);
530 ManagedObjectPath<?, ?> parentPath = getParentPath();
531 ServerManagedObject<?> parent = context.getManagedObject(parentPath);
859 private ManagedObjectPath<?, ?> parentPath; field in class:AggregationPropertyDefinition
988 return parentPath.child(relationDefinition, name);
1001 return parentPath;
1113 Reference<C, S> reference = Reference.parseName(parentPath,
1130 builder.append(" parentPath=");
1131 builder.append(parentPath);
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DAggregationPropertyDefinition.java476 ManagedObjectPath<?, ?> parentPath = getParentPath();
477 ServerManagedObject<?> parent = context.getManagedObject(parentPath);
529 ManagedObjectPath<?, ?> parentPath = getParentPath();
530 ServerManagedObject<?> parent = context.getManagedObject(parentPath);
858 private ManagedObjectPath<?, ?> parentPath; field in class:AggregationPropertyDefinition
987 return parentPath.child(relationDefinition, name);
1000 return parentPath;
1112 Reference<C, S> reference = Reference.parseName(parentPath,
1129 builder.append(" parentPath=");
1130 builder.append(parentPath);
[all...]

Completed in 120 milliseconds

1234