Class AbstractValve
- java.lang.Object
-
- org.hippoecm.hst.container.valves.AbstractValve
-
- All Implemented Interfaces:
Valve
- Direct Known Subclasses:
AbstractOrderableValve
public abstract class AbstractValve extends Object implements Valve
AbstractValve
-
-
Constructor Summary
Constructors Constructor Description AbstractValve()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
destroy()
Called by the container to indicate to a valve that the valve is being taken out of servicevoid
initialize()
Initialize the valve before using in a pipeline.abstract void
invoke(ValveContext context)
Invoke this valve
-
-
-
Method Detail
-
invoke
public abstract void invoke(ValveContext context) throws ContainerException
Description copied from interface:Valve
Invoke this valve- Specified by:
invoke
in interfaceValve
- Throws:
ContainerException
-
initialize
public void initialize() throws ContainerException
Description copied from interface:Valve
Initialize the valve before using in a pipeline.- Specified by:
initialize
in interfaceValve
- Throws:
ContainerException
-
-