| |
|
| java.lang.Object org.openlaszlo.data.Data
All known Subclasses: org.openlaszlo.data.HttpData,
Data | abstract public class Data (Code) | | An abstraction for holding data.
author: Eric Bloch |
appendResponseHeadersAsXML | public void appendResponseHeadersAsXML(StringBuffer xmlResponse)(Code) | | This method should be implemented for Data's who's mime-type is XML.
Append any response meta data into the given string as XML
|
getMimeType | abstract public String getMimeType()(Code) | | mime type of data (or null if unknown) |
lastModified | public long lastModified()(Code) | | the lastModified time of the data or -1if the last modified time is unknown. |
notModified | public boolean notModified()(Code) | | Checks if the data was not modified.
true if the data was "not modified" sincethe last time it was accessed. |
release | public void release()(Code) | | release any resources associated with this data
|
size | public long size()(Code) | | size of the data if known or -1 if not known |
|
|
|