Package org.apache.cxf.jaxrs.model.wadl

Examples of org.apache.cxf.jaxrs.model.wadl.XMLName


                                      Type genericType,
                                      ResourceTypes types,
                                      Annotation[] anns) {
        if (InjectionUtils.isSupportedCollectionOrArray(type)) {
            type = InjectionUtils.getActualType(genericType);
            XMLName name = AnnotationUtils.getAnnotation(anns, XMLName.class);
            if (name != null) {
                types.getCollectionMap().put(type, JAXRSUtils.convertStringToQName(name.value()));
            }
        }
        JAXBElementProvider<?> provider = new JAXBElementProvider<Object>();
        if (type != null
            && !InjectionUtils.isPrimitive(type)
View Full Code Here

TOP

Related Classes of org.apache.cxf.jaxrs.model.wadl.XMLName

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.