Package org.exquery.restxq.annotation

Examples of org.exquery.restxq.annotation.RestAnnotationName


            throw new IllegalArgumentException("Unknown annotation: " + annotation.getName().toString());
        }
    }

    protected static RestAnnotation getRESTAnnotation(final Annotation annotation) throws RestAnnotationException {
        final RestAnnotationName an = RestAnnotationName.valueOf(annotation.getName());
       
        final AbstractRestAnnotation restAnnotation;
        switch(an) {
            case GET:
                restAnnotation = new GetMethodAnnotation();
View Full Code Here

TOP

Related Classes of org.exquery.restxq.annotation.RestAnnotationName

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.