wt.feedback
Class MultiObjectOperationFeedback

java.lang.Object
  extended bywt.feedback.MultiObjectOperationFeedback
All Implemented Interfaces:
Serializable

public class MultiObjectOperationFeedback
extends Object
implements Serializable

Used to send feedback to a remote client on the progress of multi-object wip operations since they may take a long time to complete.

See Also:
Serialized Form

Field Summary
private static String CLASSNAME
           
private  int count
           
private  WTException exception
           
private static String RESOURCE
           
private  boolean success
           
private static String versionID
           
 
Constructor Summary
MultiObjectOperationFeedback()
           
 
Method Summary
 int getCount()
          Gets the value of the attribute: count; The number of the object being processed
 WTException getException()
          Gets the value of the attribute: exception; Exception that occured while processing the current object, null if none occured.
 boolean isSuccess()
          Gets the value of the attribute: success; Indicates if operation succeeded for the current object
 void setCount(int a_Count)
          Sets the value of the attribute: count; The number of the object being processed
 void setException(WTException a_Exception)
          Sets the value of the attribute: exception; Exception that occured while processing the current object, null if none occured.
 void setSuccess(boolean a_Success)
          Sets the value of the attribute: success; Indicates if operation succeeded for the current object
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

RESOURCE

private static final String RESOURCE
See Also:
Constant Field Values

CLASSNAME

private static final String CLASSNAME

versionID

private static final String versionID
See Also:
Constant Field Values

success

private boolean success

count

private int count

exception

private WTException exception
Constructor Detail

MultiObjectOperationFeedback

public MultiObjectOperationFeedback()
Method Detail

isSuccess

public boolean isSuccess()
Gets the value of the attribute: success; Indicates if operation succeeded for the current object

Returns:
boolean

setSuccess

public void setSuccess(boolean a_Success)
Sets the value of the attribute: success; Indicates if operation succeeded for the current object

Parameters:
a_Success -

getCount

public int getCount()
Gets the value of the attribute: count; The number of the object being processed

Returns:
int

setCount

public void setCount(int a_Count)
Sets the value of the attribute: count; The number of the object being processed

Parameters:
a_Count -

getException

public WTException getException()
Gets the value of the attribute: exception; Exception that occured while processing the current object, null if none occured.

Returns:
WTException

setException

public void setException(WTException a_Exception)
Sets the value of the attribute: exception; Exception that occured while processing the current object, null if none occured.

Parameters:
a_Exception -