Examples of lastModifiedTime()


Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

        if (cache != null)
        {
          ret = (byte[])cache.get();
          if (ret != null && timeStamp != null)
          {
            if (timeStamp.equals(stream.lastModifiedTime()))
            {
              return ret;
            }
          }
        }
View Full Code Here

Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

        GZIPOutputStream zout = new GZIPOutputStream(out);
        Streams.copy(stream.getInputStream(), zout);
        zout.close();
        stream.close();
        ret = out.toByteArray();
        timeStamp = stream.lastModifiedTime();
        cache = new SoftReference(ret);
        return ret;
      }
      catch (IOException e)
      {
View Full Code Here

Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

      return sendResourceError(resourceResponse, HttpServletResponse.SC_NOT_FOUND,
          "Unable to find resource");
    }

    // add Last-Modified header (to support HEAD requests and If-Modified-Since)
    final Time lastModified = resourceStream.lastModifiedTime();

    resourceResponse.setLastModified(lastModified);

    if (resourceResponse.dataNeedsToBeWritten(attributes))
    {
View Full Code Here

Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

      // set Content-Type (may be null)
      resourceResponse.setContentType(resourceStream.getContentType());

      // add Last-Modified header (to support HEAD requests and If-Modified-Since)
      final Time lastModified = resourceStream.lastModifiedTime();

      if (lastModified != null)
        resourceResponse.setLastModified(lastModified);

      try
View Full Code Here

Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

          // Get resource stream
          IResourceStream stream = resource.getResourceStream();

          // Get last modified time from stream
          Time time = stream.lastModifiedTime();

          try
          {
            stream.close();
          }
View Full Code Here

Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

          // Get resource stream
          IResourceStream stream = resource.getResourceStream();

          // Get last modified time from stream
          Time time = stream.lastModifiedTime();

          try
          {
            stream.close();
          }
View Full Code Here

Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

      final Response response = cycle.getResponse();

      // FIXME WICKET-385 Move HTTP caching features out of org.apache.wicket.Resource
      if (isCacheable())
      {
        response.setLastModifiedTime(resourceStream.lastModifiedTime());
      }
      else
      {
        response.setLastModifiedTime(Time.valueOf(-1));
      }
View Full Code Here

Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

    locale = resourceStream.getLocale();

    if (resourceStream != null)
    {
      lastModifiedTime = resourceStream.lastModifiedTime();
      lastModifiedTimeUpdate = System.currentTimeMillis();
    }

    return resourceStream;
  }
View Full Code Here

Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

          // Get resource stream
          IResourceStream stream = resource.getResourceStream();

          // Get last modified time from stream
          Time time = stream.lastModifiedTime();

          try
          {
            stream.close();
          }
View Full Code Here

Examples of org.apache.wicket.util.resource.IResourceStream.lastModifiedTime()

      try
      {
        byte ret[] = cache.get();
        if (ret != null && timeStamp != null)
        {
          if (timeStamp.equals(stream.lastModifiedTime()))
          {
            return ret;
          }
        }
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.