"Fossies" - the Fresh Open Source Software archive

Member "rabbit4.11/htdocs/javadoc/rabbit/handler/Handler.html" of archive rabbit4.11-bin.tar.gz:


Caution: In this restricted "Fossies" environment the current HTML page may not be correctly presentated and may have some non-functional links. Alternatively you can here view or download the uninterpreted source code. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.



rabbit.handler
Interface Handler

All Known Implementing Classes:
BaseHandler, FilterHandler, GZipHandler, ImageHandler, MultiPartHandler

public interface Handler

This interface descsribes the methods neccessary to implement a handler. Besides this a constructor is also nedded

Author:
Robert Olofsson

Method Summary
 boolean changesContentSize()
          Check if this handler will change the content size.
 void handle()
          handle a request.
 

Method Detail

handle

void handle()
handle a request.


changesContentSize

boolean changesContentSize()
Check if this handler will change the content size.

Returns:
true if Content-Lenght may be changed by this handler typically used for handlers that may modify the content. Return false if this handler will not change the size.