Package org.apache.fleece.jaxrs

Examples of org.apache.fleece.jaxrs.WadlDocumentMessageBodyWriter


        return instances;
    }

    private static void addMandatoryProviders(final Collection<Object> instances) {
        instances.add(new JsrProvider()); // is this one really mandatory?
        instances.add(new WadlDocumentMessageBodyWriter());
        instances.add(EJBAccessExceptionMapper.INSTANCE);

        if ("true".equalsIgnoreCase(SystemInstance.get().getProperty("openejb.jaxrs.cxf.add-cxf-providers", "false"))) {
            instances.add(new WebApplicationExceptionMapper());
            instances.add(new BinaryDataProvider<>());
View Full Code Here

TOP

Related Classes of org.apache.fleece.jaxrs.WadlDocumentMessageBodyWriter

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.