Uses of Interface
org.forgerock.util.Factory
-
Packages that use Factory Package Description org.forgerock.http Models and manages elements of the Hypertext Transfer Protocol.org.forgerock.http.handler CoreHandler
implementations.org.forgerock.http.io Provides stream buffering, branching, and storage functions.org.forgerock.json.resource.http JSON resource Commons HTTP Framework integration.org.forgerock.openig.handler.resources Contains components and APIs used to serve static resources.org.forgerock.openig.http Integrates with the ForgeRock HTTP Framework.org.forgerock.util Provides common interfaces and classes. -
-
Uses of Factory in org.forgerock.http
Methods in org.forgerock.http that return Factory Modifier and Type Method Description Factory<Buffer>
HttpApplication. getBufferFactory()
Methods in org.forgerock.http with parameters of type Factory Modifier and Type Method Description static DescribedHttpApplication
Applications. describedHttpApplication(Handler handler, Factory<Buffer> storage, ApiProducer<io.swagger.models.Swagger> apiProducer)
Create a simpleDescribedHttpApplication
that just returns the provided arguments from the appropriate methods.static HttpApplication
Applications. simpleHttpApplication(Handler handler, Factory<Buffer> storage)
Create a simpleHttpApplication
that just returns the provided arguments from the appropriate methods. -
Uses of Factory in org.forgerock.http.handler
Fields in org.forgerock.http.handler with type parameters of type Factory Modifier and Type Field Description static Option<Factory<Buffer>>
HttpClientHandler. OPTION_TEMPORARY_STORAGE
Specifies the temporary storage that should be used for storing HTTP responses. -
Uses of Factory in org.forgerock.http.io
Methods in org.forgerock.http.io that return Factory Modifier and Type Method Description static Factory<Buffer>
IO. newTemporaryStorage()
Creates a new storage using the system dependent default temporary directory and default sizes.static Factory<Buffer>
IO. newTemporaryStorage(File directory)
Builds a storage using the given directory (may be null) and default sizes.static Factory<Buffer>
IO. newTemporaryStorage(File directory, int initialLength, int memoryLimit, int fileLimit)
Builds a storage using the given directory (may be null) and provided sizes.Methods in org.forgerock.http.io with parameters of type Factory Modifier and Type Method Description static BranchingInputStream
IO. newBranchingInputStream(InputStream in, Factory<Buffer> bufferFactory)
Creates a new branching input stream to wrap another input stream.Constructors in org.forgerock.http.io with parameters of type Factory Constructor Description PipeBufferedStream(Factory<Buffer> bufferFactory)
Constructs a newPipeBufferedStream
with the givenFactory
. -
Uses of Factory in org.forgerock.json.resource.http
Methods in org.forgerock.json.resource.http with parameters of type Factory Modifier and Type Method Description static Handler
CrestHttp. newHttpHandler(CrestApplication application, HttpContextFactory factory, Factory<Buffer> bufferFactory)
Creates a new JSON resource HTTP handler with the provided CREST request handler.static Handler
CrestHttp. newHttpHandler(CrestApplication application, Context context, Factory<Buffer> bufferFactory)
Creates a new JSON resource HTTP handler with the provided CREST request handler.static Handler
CrestHttp. newHttpHandler(CrestApplication application, Factory<Buffer> bufferFactory)
Creates a new JSON resource HTTP handler with the provided CREST request handler. -
Uses of Factory in org.forgerock.openig.handler.resources
Constructors in org.forgerock.openig.handler.resources with parameters of type Factory Constructor Description ResourceHandler(Factory<Buffer> storage, List<ResourceSet> sets, List<String> welcomePages)
Creates a newResourceHandler
with the givensets
ofResourceSet
and the list of welcome pages mappings. -
Uses of Factory in org.forgerock.openig.http
Methods in org.forgerock.openig.http that return Factory Modifier and Type Method Description Factory<Buffer>
AdminHttpApplication. getBufferFactory()
Factory<Buffer>
GatewayHttpApplication. getBufferFactory()
-
Uses of Factory in org.forgerock.util
Fields in org.forgerock.util declared as Factory Modifier and Type Field Description protected Factory<List<E>>
LazyList. factory
Factory to create the instance of the list to expose.protected Factory<Map<K,V>>
LazyMap. factory
Factory to create the instance of the map to expose.Constructors in org.forgerock.util with parameters of type Factory Constructor Description LazyList(Factory<List<E>> factory)
Constructs a new lazy list.LazyMap(Factory<Map<K,V>> factory)
Constructs a new lazy map.
-