Class ActionResult
- java.lang.Object
-
- com.aspectran.core.activity.process.result.ActionResult
-
public class ActionResult extends java.lang.ObjectThe Class ActionResult.Created: 2008. 03. 23 PM 12:01:24
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.ObjectNO_RESULT
-
Constructor Summary
Constructors Constructor Description ActionResult(ContentResult parent)Instantiates a new Action result.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetActionId()Gets the action id.ContentResultgetParent()Gets the parent.java.lang.ObjectgetResultValue()Gets the result value of an action.booleanisHidden()Returns whether or not to expose this action's result.voidsetActionId(java.lang.String actionId)Sets the action id.voidsetHidden(boolean hidden)Sets whether or not to hide the result of this action.voidsetResultValue(java.lang.Object resultValue)Sets the result value of an action.java.lang.StringtoString()
-
-
-
Constructor Detail
-
ActionResult
public ActionResult(ContentResult parent)
Instantiates a new Action result.- Parameters:
parent- the parent result
-
-
Method Detail
-
getParent
public ContentResult getParent()
Gets the parent.- Returns:
- the parent result
-
getActionId
public java.lang.String getActionId()
Gets the action id.- Returns:
- the action id
-
setActionId
public void setActionId(java.lang.String actionId)
Sets the action id.- Parameters:
actionId- the new action id
-
getResultValue
public java.lang.Object getResultValue()
Gets the result value of an action.- Returns:
- the result value of an action
-
setResultValue
public void setResultValue(java.lang.Object resultValue)
Sets the result value of an action.- Parameters:
resultValue- the new result value of an action
-
isHidden
public boolean isHidden()
Returns whether or not to expose this action's result.- Returns:
- true if hide this action result; false otherwise
-
setHidden
public void setHidden(boolean hidden)
Sets whether or not to hide the result of this action.- Parameters:
hidden- whether to hide this action result
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-