Package org.apache.wink.providers.jackson.internal.pojo.polymorphic

Examples of org.apache.wink.providers.jackson.internal.pojo.polymorphic.Dog


    public static class AnimalResource {

        @GET
        @Produces("application/json")
        public Animal getDog() throws IOException {
            Animal animal = new Dog();
            return animal;
        }
View Full Code Here


    public static class AnimalResource {

        @GET
        @Produces("application/json")
        public Animal getDog() throws IOException {
            Animal animal = new Dog();
            return animal;
        }
View Full Code Here

TOP

Related Classes of org.apache.wink.providers.jackson.internal.pojo.polymorphic.Dog

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.