Package org.apache.cxf.systest.jaxrs.codegen.jibx

Examples of org.apache.cxf.systest.jaxrs.codegen.jibx.Book


@Path("books")
public class JibxResource {
    @GET
    @Produces("application/xml")
    public Book getBook() {
        Book b = new Book();
        b.setName("JIBX");
        b.setId(1L);
        return b;
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.systest.jaxrs.codegen.jibx.Book

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.