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