Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.infohazard.maverick.flow
Interface Transform  view Transform download Transform.java

All Known Implementing Classes:
TransformWithParams

public interface Transform

The Transform interface allows some sort of arbitrary transformation on a set of input data. It is the relatively static object in the Maverick configuration object graph which represents a specific transform node in the config file. The actual work of performing a transformation step during actual request procesing is done by an instance of TransformationStep, which Maverick asks the Transform object to create.


Method Summary
 TransformStep createStep(TransformContext tctx)
          Create a step for servicing a single transformation.
 

Method Detail

createStep

public TransformStep createStep(TransformContext tctx)
                         throws javax.servlet.ServletException
Create a step for servicing a single transformation.