Examples of RootRepresentation


Examples of org.cedj.geekseek.web.rest.core.root.model.RootRepresentation

    @GET
    @Produces({BASE_JSON_MEDIA_TYPE, BASE_XML_MEDIA_TYPE})
    public Response listAllResources() {

        RootRepresentation root = new RootRepresentation(REP_TYPE, uriInfo);
        for (TopLevelResource resource : resources) {
            root.addLink(
                    new ResourceLink(
                            toResourceName(resource.getResourceClass()),
                            uriInfo.getAbsolutePathBuilder().path(resource.getResourceClass()).build(),
                            resource.getResourceMediaType()));
        }
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.