Package com.linecorp.armeria.server
Class SimpleDecoratingHttpService
java.lang.Object
com.linecorp.armeria.common.util.AbstractUnwrappable<Service<T_I,T_O>>
com.linecorp.armeria.server.DecoratingService<I,O,I,O>
com.linecorp.armeria.server.SimpleDecoratingService<HttpRequest,HttpResponse>
com.linecorp.armeria.server.SimpleDecoratingHttpService
- All Implemented Interfaces:
Unwrappable
,HttpService
,Service<HttpRequest,HttpResponse>
- Direct Known Subclasses:
AuthService
,BraveService
,ContentPreviewingService
,CorsService
,EncodingService
,LoggingService
,MetricCollectingService
public abstract class SimpleDecoratingHttpService extends SimpleDecoratingService<HttpRequest,HttpResponse> implements HttpService
An
HttpService
that decorates another HttpService
.-
Constructor Summary
Constructors Modifier Constructor Description protected
SimpleDecoratingHttpService(HttpService delegate)
Creates a new instance that decorates the specifiedHttpService
. -
Method Summary
Methods inherited from class com.linecorp.armeria.server.DecoratingService
serviceAdded, shouldCachePath
Methods inherited from class com.linecorp.armeria.common.util.AbstractUnwrappable
as, delegate, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.linecorp.armeria.server.Service
as, serviceAdded, shouldCachePath
-
Constructor Details
-
SimpleDecoratingHttpService
Creates a new instance that decorates the specifiedHttpService
.
-