Package br.com.caelum.vraptor.restfulie.resource

Examples of br.com.caelum.vraptor.restfulie.resource.Cacheable


  }

  public void handle(HypermediaResource resource) {
    // TODO implement link headers
    if(Cacheable.class.isAssignableFrom(resource.getClass())) {
      Cacheable cache = (Cacheable) resource;
      response.addHeader("Cache-control","max-age=" + cache.getMaximumAge());
    }
    if(RestfulEntity.class.isInstance(resource)) {
      RestfulEntity entity = (RestfulEntity) resource;
      restfulHeadersFor(entity.getEtag(), entity.getLastModified());
    } else {
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.restfulie.resource.Cacheable

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.