Class HttpListConfigsHandler
java.lang.Object
com.yahoo.jdisc.AbstractResource
com.yahoo.jdisc.handler.AbstractRequestHandler
com.yahoo.container.jdisc.ThreadedRequestHandler
com.yahoo.container.jdisc.ThreadedHttpRequestHandler
com.yahoo.vespa.config.server.http.HttpHandler
com.yahoo.vespa.config.server.http.HttpListConfigsHandler
- All Implemented Interfaces:
com.yahoo.container.jdisc.HttpRequestHandler
,com.yahoo.jdisc.handler.RequestHandler
,com.yahoo.jdisc.SharedResource
Handler for a list configs operation. Lists all configs in model.
- Since:
- 5.1.11
- Author:
- vegardh
-
Nested Class Summary
Nested classes/interfaces inherited from class com.yahoo.container.jdisc.ThreadedHttpRequestHandler
com.yahoo.container.jdisc.ThreadedHttpRequestHandler.Context, com.yahoo.container.jdisc.ThreadedHttpRequestHandler.LazyContentChannel
Nested classes/interfaces inherited from interface com.yahoo.jdisc.SharedResource
com.yahoo.jdisc.SharedResource.Debug
-
Field Summary
Fields inherited from class com.yahoo.container.jdisc.ThreadedHttpRequestHandler
CONTENT_TYPE, log
Fields inherited from class com.yahoo.container.jdisc.ThreadedRequestHandler
metric
Fields inherited from interface com.yahoo.jdisc.SharedResource
DEBUG, SYSTEM_PROPERTY_NAME_DEBUG
-
Constructor Summary
ConstructorsConstructorDescriptionHttpListConfigsHandler
(com.yahoo.container.jdisc.ThreadedHttpRequestHandler.Context ctx, RequestHandler requestHandler) HttpListConfigsHandler
(com.yahoo.container.jdisc.ThreadedHttpRequestHandler.Context ctx, TenantRepository tenantRepository) -
Method Summary
Modifier and TypeMethodDescriptioncom.yahoo.container.jdisc.HttpResponse
handleGET
(com.yahoo.container.jdisc.HttpRequest req) Default implementation of handler for GET requests.Methods inherited from class com.yahoo.vespa.config.server.http.HttpHandler
getRequestTimeout, handle, handleDELETE, handlePOST, handlePUT
Methods inherited from class com.yahoo.container.jdisc.ThreadedHttpRequestHandler
addDateHeader, asHttpRequest, createLoggingCompletionHandler, handle, handleRequest, testContext
Methods inherited from class com.yahoo.container.jdisc.ThreadedRequestHandler
executor, getRequestType, getTimeout, handleRequest, writeErrorResponseOnOverload
Methods inherited from class com.yahoo.jdisc.handler.AbstractRequestHandler
handleTimeout
Methods inherited from class com.yahoo.jdisc.AbstractResource
currentState, destroy, refer, refer, release, retainCount
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.yahoo.container.jdisc.HttpRequestHandler
requestHandlerSpec
Methods inherited from interface com.yahoo.jdisc.handler.RequestHandler
handleRequest, handleTimeout
Methods inherited from interface com.yahoo.jdisc.SharedResource
refer, refer, release
-
Constructor Details
-
HttpListConfigsHandler
@Inject public HttpListConfigsHandler(com.yahoo.container.jdisc.ThreadedHttpRequestHandler.Context ctx, TenantRepository tenantRepository) -
HttpListConfigsHandler
public HttpListConfigsHandler(com.yahoo.container.jdisc.ThreadedHttpRequestHandler.Context ctx, RequestHandler requestHandler)
-
-
Method Details
-
handleGET
public com.yahoo.container.jdisc.HttpResponse handleGET(com.yahoo.container.jdisc.HttpRequest req) Description copied from class:HttpHandler
Default implementation of handler for GET requests. Returns an error response. Override this method to handle GET requests.- Overrides:
handleGET
in classHttpHandler
- Parameters:
req
- aHttpRequest
- Returns:
- an error response with response code 405
-