Annotation Type ServiceImplementation
Used to bind methods to services, like such:
@Nullable
@ServiceImplementation(YourService.class)
public YourResult handle(YourContext) {
return result;
}
-
Required Element Summary
Required Elements
-
Element Details
-
value
The service class that the method implements- Returns:
- Service to implement
-