Package org.apache.cxf.systest.jaxrs.sdo.impl

Examples of org.apache.cxf.systest.jaxrs.sdo.impl.StructureImpl


    @SuppressWarnings("unchecked")
    @GET
    @Path("/structure")
    @Produces({"application/xml", "application/json" })
    public Structure getStructure() {
        Structure struct = new StructureImpl();
        struct.getTexts().add("text1");
        struct.setText("sdo");
        struct.setInt(3);
        struct.setDbl(123.5);
        return struct;
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.systest.jaxrs.sdo.impl.StructureImpl

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.