use of org.androidannotations.rest.spring.handler.PathHandler in project androidannotations by androidannotations.
the class RestSpringPlugin method getHandlers.
@Override
public List<AnnotationHandler<?>> getHandlers(AndroidAnnotationsEnvironment androidAnnotationEnv) {
List<AnnotationHandler<?>> annotationHandlers = new ArrayList<>();
annotationHandlers.add(new RestHandler(androidAnnotationEnv));
annotationHandlers.add(new FieldHandler(androidAnnotationEnv));
annotationHandlers.add(new PartHandler(androidAnnotationEnv));
annotationHandlers.add(new BodyHandler(androidAnnotationEnv));
annotationHandlers.add(new GetHandler(androidAnnotationEnv));
annotationHandlers.add(new PostHandler(androidAnnotationEnv));
annotationHandlers.add(new PutHandler(androidAnnotationEnv));
annotationHandlers.add(new PatchHandler(androidAnnotationEnv));
annotationHandlers.add(new DeleteHandler(androidAnnotationEnv));
annotationHandlers.add(new HeadHandler(androidAnnotationEnv));
annotationHandlers.add(new OptionsHandler(androidAnnotationEnv));
annotationHandlers.add(new PathHandler(androidAnnotationEnv));
annotationHandlers.add(new HeaderHandler(androidAnnotationEnv));
annotationHandlers.add(new HeadersHandler(androidAnnotationEnv));
annotationHandlers.add(new RestServiceHandler(androidAnnotationEnv));
return annotationHandlers;
}
Aggregations