org.soybeanMilk.core
类 Execution

java.lang.Object
  继承者 org.soybeanMilk.core.Execution
所有已实现的接口:
java.io.Serializable

public class Execution
extends java.lang.Object
implements java.io.Serializable

执行语境信息。
如果你为框架添加了执行拦截器(参考执行拦截器信息类), 或许想要在你的拦截器中获取这些执行语境信息。

作者:
earthAngry@gmail.com
另请参见:
序列化表格

构造方法摘要
Execution()
           
Execution(Executable executable, ObjectSource objectSource)
           
Execution(Executable executable, ObjectSource objectSource, ExecuteException executeException)
           
 
方法摘要
 Executable getExecutable()
           
 ExecuteException getExecuteException()
           
 ObjectSource getObjectSource()
           
 void setExecutable(Executable executable)
           
 void setExecuteException(ExecuteException executeException)
           
 void setObjectSource(ObjectSource objectSource)
           
 java.lang.String toString()
           
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

Execution

public Execution()

Execution

public Execution(Executable executable,
                 ObjectSource objectSource)

Execution

public Execution(Executable executable,
                 ObjectSource objectSource,
                 ExecuteException executeException)
方法详细信息

getExecutable

public Executable getExecutable()

setExecutable

public void setExecutable(Executable executable)

getObjectSource

public ObjectSource getObjectSource()

setObjectSource

public void setObjectSource(ObjectSource objectSource)

getExecuteException

public ExecuteException getExecuteException()

setExecuteException

public void setExecuteException(ExecuteException executeException)

toString

public java.lang.String toString()
覆盖:
java.lang.Object 中的 toString