| Package | Description |
|---|---|
| com.linecorp.armeria.internal.server.annotation |
Various classes used internally.
|
| com.linecorp.armeria.internal.server.docs |
Various classes used internally.
|
| com.linecorp.armeria.server.docs |
Documentation service.
|
| Modifier and Type | Method and Description |
|---|---|
ServiceSpecification |
AnnotatedDocServicePlugin.generateSpecification(Set<ServiceConfig> serviceConfigs,
DocServiceFilter filter) |
| Modifier and Type | Method and Description |
|---|---|
static DocServiceFilter |
DocServiceUtil.unifyFilter(DocServiceFilter includeFilter,
DocServiceFilter excludeFilter) |
| Modifier and Type | Method and Description |
|---|---|
static DocServiceFilter |
DocServiceUtil.unifyFilter(DocServiceFilter includeFilter,
DocServiceFilter excludeFilter) |
| Modifier and Type | Method and Description |
|---|---|
default DocServiceFilter |
DocServiceFilter.and(DocServiceFilter other)
Returns a composite
DocServiceFilter that represents a short-circuiting logical AND of
this filter and other. |
static DocServiceFilter |
DocServiceFilter.ofAnnotated()
Returns a
DocServiceFilter which returns true only for the services detected by the
annotated service plugin. |
static DocServiceFilter |
DocServiceFilter.ofGrpc()
Returns a
DocServiceFilter which returns true only for the services detected by the
gRPC plugin. |
static DocServiceFilter |
DocServiceFilter.ofMethodName(String methodName)
Returns a
DocServiceFilter which returns true when the name of the method matches the
specified methodName. |
static DocServiceFilter |
DocServiceFilter.ofMethodName(String serviceName,
String methodName)
Returns a
DocServiceFilter which returns true when the name of the service and method
matches the specified serviceName and methodName. |
static DocServiceFilter |
DocServiceFilter.ofMethodName(String pluginName,
String serviceName,
String methodName)
Returns a
DocServiceFilter which returns true when the name of the plugin, service and
method matches the specified pluginName, serviceName and methodName. |
static DocServiceFilter |
DocServiceFilter.ofPluginName(String pluginName)
Returns a
DocServiceFilter which returns true when the name of the plugin matches the
specified pluginName. |
static DocServiceFilter |
DocServiceFilter.ofRegex(Pattern pattern)
Returns a
DocServiceFilter which returns true when the concatenated name of the plugin,
service and method matches the specified Pattern. |
static DocServiceFilter |
DocServiceFilter.ofRegex(String regex)
Returns a
DocServiceFilter which returns true when the concatenated name of the plugin,
service and method matches the specified regex. |
static DocServiceFilter |
DocServiceFilter.ofServiceName(String serviceName)
Returns a
DocServiceFilter which returns true when the name of the service matches the
specified serviceName. |
static DocServiceFilter |
DocServiceFilter.ofServiceName(String pluginName,
String serviceName)
Returns a
DocServiceFilter which returns true when the name of the plugin and service
matches the specified pluginName and serviceName. |
static DocServiceFilter |
DocServiceFilter.ofThrift()
Returns a
DocServiceFilter which returns true only for the services detected by the
Thrift plugin. |
default DocServiceFilter |
DocServiceFilter.or(DocServiceFilter other)
Returns a composite
DocServiceFilter that represents a short-circuiting logical OR of
this filter and other. |
| Modifier and Type | Method and Description |
|---|---|
default DocServiceFilter |
DocServiceFilter.and(DocServiceFilter other)
Returns a composite
DocServiceFilter that represents a short-circuiting logical AND of
this filter and other. |
DocServiceBuilder |
DocServiceBuilder.exclude(DocServiceFilter filter)
Adds the
DocServiceFilter that checks whether a method will be excluded while building
DocService. |
ServiceSpecification |
DocServicePlugin.generateSpecification(Set<ServiceConfig> serviceConfigs,
DocServiceFilter filter)
Generates a new
ServiceSpecification that provides the information about the supported
Services. |
DocServiceBuilder |
DocServiceBuilder.include(DocServiceFilter filter)
Adds the
DocServiceFilter that checks whether a method will be included while building
DocService. |
default DocServiceFilter |
DocServiceFilter.or(DocServiceFilter other)
Returns a composite
DocServiceFilter that represents a short-circuiting logical OR of
this filter and other. |
Copyright © 2020 LeanCloud. All rights reserved.