Package com.sun.jersey.server.linking.impl

Examples of com.sun.jersey.server.linking.impl.LinkProcessor


    public ContainerResponse filter(ContainerRequest request, ContainerResponse response) {
        Object entity  = response.getEntity();
        if (entity != null) {
            Class<?> entityClass = entity.getClass();
            LinkProcessor lhp = new LinkProcessor(entityClass);
            lhp.processLinkHeaders(entity, uriInfo, response.getHttpHeaders());
            RefProcessor lp = new RefProcessor(entityClass);
            lp.processLinks(entity, uriInfo);
        }
        return response;
    }
View Full Code Here

TOP

Related Classes of com.sun.jersey.server.linking.impl.LinkProcessor

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.