com.ibm.websphere.servlet.cache

Class ExternalCacheEntry

  1. java.lang.Object
  2. extended bycom.ibm.websphere.servlet.cache.ExternalCacheEntry
All implemented interfaces:
java.io.Serializable

  1. public class ExternalCacheEntry
  2. extends java.lang.Object
  3. implements java.io.Serializable
This is a simple struct object that contains url, html and header members for an external cache entry.
See Also:
Serialized Form

Field Summary

Modifier and Type Field and Description
  1. byte[]
content
This is the content (html) part of the entry
  1. java.util.Vector[]
headerTable
This hashtable contains the header fields needed for caching.
  1. java.lang.String
host
This is the host header as received in the request
  1. java.lang.String
uri
This is the uri part of the entry

Constructor Summary

Constructor and Description
ExternalCacheEntry()

Method Summary

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Field Detail

host

  1. public java.lang.String host
This is the host header as received in the request

uri

  1. public java.lang.String uri
This is the uri part of the entry

content

  1. public byte[] content
This is the content (html) part of the entry

headerTable

  1. public java.util.Vector[] headerTable
This hashtable contains the header fields needed for caching.

Constructor Detail

ExternalCacheEntry

  1. public ExternalCacheEntry()