EAF 7.6 Implementation

com.lutris.appserver.server
Class RequestPreProcessingManager

java.lang.Object
  extended by com.lutris.appserver.server.RequestPreProcessingManager

public class RequestPreProcessingManager
extends java.lang.Object

Author:
Slobodan Vujasinovic

Field Summary
static java.lang.String CONFIG_PREFIX
          RequestPreProcessingManager configuration prefix
 
Constructor Summary
RequestPreProcessingManager(com.lutris.util.Config config, com.lutris.logging.LogChannel logChannel)
          Initialize preprocessing manager according to application configuration!
 
Method Summary
 boolean addPreProcessor(int position, org.enhydra.util.RequestPreProcessor rPP)
           
 java.util.Vector getPreProcessors()
           
 boolean manage(HttpPresentationComms comms)
          Manages request preprocessing.
 boolean removePreProcessor(int position)
           
 boolean removePreProcessor(org.enhydra.util.RequestPreProcessor rPP)
           
 boolean removePreProcessor(java.lang.String ppName)
           
 void setPreProcessors(java.util.Vector preProcessors)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CONFIG_PREFIX

public static final java.lang.String CONFIG_PREFIX
RequestPreProcessingManager configuration prefix

See Also:
Constant Field Values
Constructor Detail

RequestPreProcessingManager

public RequestPreProcessingManager(com.lutris.util.Config config,
                                   com.lutris.logging.LogChannel logChannel)
Initialize preprocessing manager according to application configuration!

Parameters:
config -
Method Detail

manage

public boolean manage(HttpPresentationComms comms)
Manages request preprocessing.

Parameters:
comms -
Returns:

addPreProcessor

public boolean addPreProcessor(int position,
                               org.enhydra.util.RequestPreProcessor rPP)

removePreProcessor

public boolean removePreProcessor(int position)

removePreProcessor

public boolean removePreProcessor(org.enhydra.util.RequestPreProcessor rPP)

removePreProcessor

public boolean removePreProcessor(java.lang.String ppName)

getPreProcessors

public java.util.Vector getPreProcessors()

setPreProcessors

public void setPreProcessors(java.util.Vector preProcessors)

EAF 7.6 Implementation