Annotation Interface Implementation
Indicates that the annotated class is a custom implementation that should replace the default implementation.
A class annotated with Implementation
will be automatically searched for with help of the ClassFinder
s
and instantiated by guice. Following types are candidates for automatic registration.
Additionally, the following classes can be also automatically registered via their dedicated annotations.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic @interface
A class annotated withImplementation.Middleware
will be automatically searched for and instantiated as aMiddleware
by guice.static @interface
A class annotated withImplementation.TypeAdapter
will be automatically searched for and instantiated as aTypeAdapter
by guice.static @interface
A class annotated withImplementation.Validator
will be automatically searched for and instantiated as aValidator
by guice.