Examples of Book2


Examples of org.apache.cxf.jaxrs.resources.jaxb.Book2

   
    @Test
    public void testIgnoreNamespacesPackageInfo() throws Exception {
        JSONProvider<Book2> p = new JSONProvider<Book2>();
        p.setIgnoreNamespaces(true);
        Book2 book = new Book2(123);
        book.setName("CXF");
       
        ByteArrayOutputStream os = new ByteArrayOutputStream();
       
        p.writeTo(book, Book2.class, Book2.class, Book2.class.getAnnotations(),
                  MediaType.APPLICATION_JSON_TYPE, new MetadataMap<String, Object>(), os);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.