Package javax.ws.rs.core.Response

Examples of javax.ws.rs.core.Response.ResponseBuilder.expires()


    cacheControl.setPrivate(false);
    builder.cacheControl(cacheControl);

    Calendar calendar = Calendar.getInstance();
    calendar.add(Calendar.MONTH, 1);
    builder.expires(calendar.getTime());
    builder.lastModified(CommaFeedApplication.STARTUP_TIME);

    return builder.build();
  }
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.