Uses of Class
org.forgerock.openig.heap.Name
-
Packages that use Name Package Description org.forgerock.openig.decoration Decorator API to ease heap object customization and transformation.org.forgerock.openig.decoration.helper Contains an abstract decorator dedicated to Filter and Handler.org.forgerock.openig.heap Manages collections or "heaps" of associated objects, initialized from declarative configuration artifacts. -
-
Uses of Name in org.forgerock.openig.decoration
Methods in org.forgerock.openig.decoration that return Name Modifier and Type Method Description Name
Context. getName()
Returns the name of the heap object being decorated. -
Uses of Name in org.forgerock.openig.decoration.helper
Fields in org.forgerock.openig.decoration.helper declared as Name Modifier and Type Field Description protected Name
DecoratorHeaplet. name
The fully qualified name of the object to be created.Methods in org.forgerock.openig.decoration.helper with parameters of type Name Modifier and Type Method Description Object
DecoratorHeaplet. create(Name name, JsonValue config, Heap heap)
-
Uses of Name in org.forgerock.openig.heap
Fields in org.forgerock.openig.heap declared as Name Modifier and Type Field Description protected Name
GenericHeaplet. qualified
The fully qualified name of the object to be created.Methods in org.forgerock.openig.heap that return Name Modifier and Type Method Description Name
Name. child(String name)
Creates a new Name, relative to this Name with the given leaf name.Name
Name. decorated(String decorator)
Returns this name with the last segment adapted to include the decorator name.Name
Heap. getName()
Returns the name of this heap.Name
HeapImpl. getName()
Name
Name. getParent()
Returns the parent Name (can benull
).static Name
Name. of(Class<?> type)
Builds a new Name for the given type.static Name
Name. of(String... parts)
Builds a new Name using the given name parts.Methods in org.forgerock.openig.heap with parameters of type Name Modifier and Type Method Description Object
GenericHeaplet. create(Name name, JsonValue config, Heap heap)
Object
Heaplet. create(Name name, JsonValue config, Heap heap)
Called to request the heaplet to create an object.Constructors in org.forgerock.openig.heap with parameters of type Name Constructor Description EnvironmentHeap(Name name, String bindingName, Environment environment, org.forgerock.config.resolvers.PropertyResolver propertyResolver)
Builds a new EnvironmentHeap with the givenname
andenvironment
.EnvironmentHeap(Name name, Environment environment, org.forgerock.config.resolvers.PropertyResolver propertyResolver)
Builds a new EnvironmentHeap with the givenname
andenvironment
.HeapImpl(HeapImpl parent, Name name)
Builds a new heap that is a child of the given heap.HeapImpl(HeapImpl parent, Name name, org.forgerock.config.resolvers.PropertyResolver propertyResolver)
Builds a new heap that is a child of the given heap.HeapImpl(Name name)
Builds a root heap (will be referenced by children but has no parent itself).
-