Package com.changestuffs.scrum.shared.domain

Examples of com.changestuffs.scrum.shared.domain.Task


    }

    @GET
    @Path("{id}")
    public Response fetchTask(@PathParam("id") Long id) {
        Task task = taskDao.get(id);

        return Response.ok(task).build();
    }
View Full Code Here

TOP

Related Classes of com.changestuffs.scrum.shared.domain.Task

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.