Class BaseWorkflowCallbackHandler<T extends Workflow>
- java.lang.Object
-
- org.hippoecm.hst.content.beans.manager.workflow.BaseWorkflowCallbackHandler<T>
-
- All Implemented Interfaces:
QualifiedWorkflowCallbackHandler<T>
public abstract class BaseWorkflowCallbackHandler<T extends Workflow> extends Object implements QualifiedWorkflowCallbackHandler<T>
-
-
Constructor Summary
Constructors Constructor Description BaseWorkflowCallbackHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends T>
getWorkflowType()
Dynamically derive this class its actual Parameterized Type-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hippoecm.hst.content.beans.manager.workflow.QualifiedWorkflowCallbackHandler
processWorkflow
-
-
-
-
Method Detail
-
getWorkflowType
public Class<? extends T> getWorkflowType()
Dynamically derive this class its actual Parameterized TypeConcrete implementations of this base class also can easily override/replace this method and then simply return the concrete class used to parameterize this base class.
- Specified by:
getWorkflowType
in interfaceQualifiedWorkflowCallbackHandler<T extends Workflow>
- Returns:
- the actual Parameterized Type of this class
-
-