| Interface | Description |
|---|---|
| Bufferable |
For response handlers that can be buffered
|
| CacheControlHelper |
Generates the cache-control header on the response
|
| ContentGenerator |
Used to generate error pages from ResponseHandlers.
|
| CustomPostHandler |
Used for when we want to delegate POST handling to something other then the
usual processForm method.
|
| ETagGenerator |
Generates ETags, ie entity tags.
|
| Http11ResponseHandler |
The ResponseHandler should handle all responses back to the client.
|
| PartialllyUpdateableResource |
A resource which, as well as being completely replaceable, can have its content
partially replaced. ie individual ranges can be set
While PutHandler will do this for you even if you don't implement this interface,
the approach used might not be efficient.
|
| Class | Description |
|---|---|
| DefaultCacheControlHelper | |
| DefaultETagGenerator |
Generates the ETag as follows:
- if the resource has a null unique id, returns null
- if the resource has a modified date it's hashcode is appended to the unique id
- the result is returned
|
| DefaultHttp11ResponseHandler | |
| DeleteHandler | |
| GetHandler | |
| Http11Protocol | |
| JustCopyTheUniqueIdETagGenerator |
Generates the ETag by just returning the getUniqueId
|
| MatchHelper | |
| MultipleRangeWritingOutputStream |
Write the full content of yuor resource to this outputstream, and it will
write the requested ranges, including multipart boundaries, to the wrapped
outputstream
|
| OptionsHandler |
Support the OPTIONS http method.
|
| PartialGetHelper | |
| PostHandler | |
| PutHandler | |
| PutHelper |
A collection of utility methods for PutHandler
|
| SimpleContentGenerator |
Just uses simple property values to generate error content
|
| Enum | Description |
|---|---|
| DefaultHttp11ResponseHandler.BUFFERING |
Copyright © 2021 McEvoy Software Ltd. All rights reserved.