Package org.exist.extensions.exquery.restxq.impl.adapters

Examples of org.exist.extensions.exquery.restxq.impl.adapters.AnnotationAdapter


                Set<org.exquery.xquery3.Annotation> functionRestAnnotations = null;

                //process the function annotations
                for(final Annotation annotation : annotations) {
                    if(RestAnnotationFactory.isRestXqAnnotation(annotation.getName().toJavaQName())) {
                        final org.exquery.xquery3.Annotation restAnnotation = RestAnnotationFactory.getAnnotation(new AnnotationAdapter(annotation));
                        if(functionRestAnnotations == null) {
                            functionRestAnnotations = new HashSet<org.exquery.xquery3.Annotation>();
                        }
                        functionRestAnnotations.add(restAnnotation);
                    }
View Full Code Here

TOP

Related Classes of org.exist.extensions.exquery.restxq.impl.adapters.AnnotationAdapter

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.