filenet.vw.api
Class VWTransferResult
- java.lang.Object
-
- filenet.vw.api.VWTransferResult
-
- All Implemented Interfaces:
- java.io.Serializable
public final class VWTransferResult extends java.lang.Object implements java.io.SerializableUse this class to access the value returned by a VWSession.transfer() method call.The following code snippet demonstrates how to use this class in a general fashion:
// Initialize version and errors to null:
String myVersion = null;
string myError[] = null;
// Put result of transfer in tRes:
VWTransferResult tRes = mySession.transfer ( myWorkflow, "DLTestWorkflow", true, true );
// If the transfer was successful, return the version; otherwise return the errors that caused it to fail:
if (tRes.sucess())
myVersion = tRes.getVersion();
else
myError = tRes.getErrors();- Since:
- VWWS3.10
- See Also:
VWSession,VWSession.transfer(filenet.vw.api.VWWorkflowDefinition, java.lang.String, boolean, boolean), Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.String[]getErrors()Retrieves the errors returned by a transfer operation.java.lang.StringgetVersion()Retrieves a string representation of the version returned by the transfer.booleansuccess()Determines whether a transfer was successful.java.lang.StringtoString()Retrieves the string version of this transfer result object.
-
-
-
Method Detail
-
success
public boolean success()
Determines whether a transfer was successful.- Returns:
trueif the transfer succeeded; otherwise, the method returnsfalse.
-
getVersion
public java.lang.String getVersion()
Retrieves a string representation of the version returned by the transfer.- Returns:
- The transfer version string or null
if the transfer operation fails.
To retrieve the errors causing a failure, use the
VWTransferResult.getErrors()method.
-
getErrors
public java.lang.String[] getErrors()
Retrieves the errors returned by a transfer operation.- Returns:
- An array of strings. Each string represents an error message for each error encountered during the transfer operation. If the system completed the transfer operation successfully, the array will contain null values.
-
toString
public java.lang.String toString()
Retrieves the string version of this transfer result object.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string containing a text representation of the transfer result object.
-
-