Methods Summary |
---|
public java.lang.String | getComponentMessageType()Get the type(status, exception) of message to be built for this component.
return mMsgTypeToBuild;
|
public java.lang.String | getComponentName()Return the name of the component.
return mComponentName;
|
public java.lang.String | getExceptionMessageType()Get the exception message type being returned by the component.
return mExceptionMsgType;
|
public java.lang.Throwable | getExceptionObject()Get the exception object being thrown by this component.
return mExceptionObject;
|
public java.lang.String | getLocMessage(int nestingLevel)Returns the exception message.
return (String) mLocMessageCache.get(String.valueOf(nestingLevel));
|
public java.lang.String[] | getLocParam(int nestingLevel)Returns the exception message parameters.
return (String[]) mLocParamCache.get(String.valueOf(nestingLevel));
|
public java.lang.String | getLocToken(int nestingLevel)Returns the message token.
return (String) mLocTokenCache.get(String.valueOf(nestingLevel));
|
public java.lang.String | getStatusMessageType()Get the status message type being returned by the component.
return mStatusMsgType;
|
public java.lang.String | getTaskName()Get the name of the task executed by this component.
return mTaskName;
|
public java.lang.String | getTaskResult()Get the result of the task executed by this component.
return mTaskResult;
|
public void | setComponentName(java.lang.String name)Set the name of the component that executed the task.
mComponentName = name;
|
public void | setExceptionMessageType(java.lang.String exMsgType)Set the exception message type being returned by the component.
mExceptionMsgType = exMsgType;
|
public void | setExceptionObject(java.lang.Throwable exObj)Set the exception object.
mExceptionObject = exObj;
|
public void | setLocMessage(int nestingLevel, java.lang.String locMessage)Set the message for the exception being thrown by the component.
mLocMessageCache.put(String.valueOf(nestingLevel), locMessage);
|
public void | setLocParam(int nestingLevel, java.lang.String[] locParam)Set the message parameters for the exception being thrown by the component.
mLocParamCache.put(String.valueOf(nestingLevel), locParam);
|
public void | setLocToken(int nestingLevel, java.lang.String locToken)Set the message token for the exception being thrown by the component.
mLocTokenCache.put(String.valueOf(nestingLevel), locToken);
|
public void | setStatusMessageType(java.lang.String statMsgType)Set the message type being returned by the component.
mStatusMsgType = statMsgType;
|
public void | setTaskName(java.lang.String taskName)Set the name of the task executed by component.
mTaskName = taskName;
|
public void | setTaskResult(java.lang.String taskResult)Set the result of the task executed by component.
mTaskResult = taskResult;
|