Class HeaderAction
- java.lang.Object
-
- com.aspectran.core.activity.process.action.HeaderAction
-
- All Implemented Interfaces:
Executable
public class HeaderAction extends java.lang.Object implements Executable
HeaderActionto set response headers.Created: 2016. 08. 23.
- Since:
- 3.0.0
-
-
Constructor Summary
Constructors Constructor Description HeaderAction(HeaderActionRule headerActionRule)Instantiates a new HeaderAction.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectexecute(Activity activity)Execute this action.java.lang.StringgetActionId()Gets the action id.<T> TgetActionRule()Gets the action rule.ActionTypegetActionType()Gets the Action Type.HeaderActionRulegetHeaderActionRule()Returns the header action rule.booleanisHidden()Returns whether this action is hidden.java.lang.StringtoString()
-
-
-
Constructor Detail
-
HeaderAction
public HeaderAction(HeaderActionRule headerActionRule)
Instantiates a new HeaderAction.- Parameters:
headerActionRule- the header action rule
-
-
Method Detail
-
execute
public java.lang.Object execute(Activity activity) throws java.lang.Exception
Description copied from interface:ExecutableExecute this action.- Specified by:
executein interfaceExecutable- Parameters:
activity- the activity- Returns:
- the result of action execution
- Throws:
java.lang.Exception- if the action fails to execute
-
getHeaderActionRule
public HeaderActionRule getHeaderActionRule()
Returns the header action rule.- Returns:
- the headerActionRule
-
getActionId
public java.lang.String getActionId()
Description copied from interface:ExecutableGets the action id.- Specified by:
getActionIdin interfaceExecutable- Returns:
- the action id
-
isHidden
public boolean isHidden()
Description copied from interface:ExecutableReturns whether this action is hidden.- Specified by:
isHiddenin interfaceExecutable- Returns:
- true, if is hidden action
-
getActionType
public ActionType getActionType()
Description copied from interface:ExecutableGets the Action Type.- Specified by:
getActionTypein interfaceExecutable- Returns:
- the Action Type
-
getActionRule
public <T> T getActionRule()
Description copied from interface:ExecutableGets the action rule.- Specified by:
getActionRulein interfaceExecutable- Type Parameters:
T- the generic type- Returns:
- the action rule
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-