Oracle® Collaboration Suite Workspaces API Reference
10g Release 1 (10.1.2)

B25479-01


oracle.workspaces
Interface CwBulkResponse

All Known Subinterfaces:
CwResourceBulkResponse

public interface CwBulkResponse

This interface is used to represent the response if partial success is supported by the operation.

Since:
release specific (what release of product did this appear in)

Method Summary
 java.lang.Throwable[] getFailedExceptions()
          Returns the causes of failed objects.
 java.lang.Object[] getFailedObjects()
          Returns the failed objects.
 java.lang.Object[] getSuccessfulObjects()
          Returns the successful results.
 boolean isPartialResponse()
          Returns true if this is the partial response.

 

Method Detail

getFailedExceptions

public java.lang.Throwable[] getFailedExceptions()
Returns the causes of failed objects. This method should never return null. If there is no failed objects, it returns an empty array.

getFailedObjects

public java.lang.Object[] getFailedObjects()
Returns the failed objects. This method should never return null. If there is no failed objects, it returns an empty array. Note: The actual object depends on the operation that has been taken. It is up to the caller to decide what type of object has been returned.

getSuccessfulObjects

public java.lang.Object[] getSuccessfulObjects()
Returns the successful results. This method should never return null. If there is no successful objects, it returns an empty array. Note: The actual result object depends on the operation that has been taken. It is up to the caller to decide what type of object has been returned.

isPartialResponse

public boolean isPartialResponse()
Returns true if this is the partial response.

Copyright © 2001, 2005, Oracle. All rights reserved.