com.tivoli.twg.cim
Interface iCIMAccessorResponse


public interface iCIMAccessorResponse

This interface is designed to work in conjunction with iCIMAccessor. It is to be implemented by user of that interface to allow the results to be communicated back. Since all operations of the iCIMAccessor interface complete asyncronously, the methods of this interface act as callback or response handlers. For coorelation purposes, each method carries a refenerence to th the instance of the aCIMAccessor that originated the request.

See Also:
iCIMAccessor, aCIMAccessPair, aCIMError

Method Summary
 void AccessorError(iCIMAccessor Caller, aCIMError Error)
          Called by the Accessor handler when a complete failure has occured.
 void GetResponse(iCIMAccessor Caller, aCIMAccessPair[] Values)
          Called by the Accessor handler when a Get operation completes.
 void SetResponse(iCIMAccessor Caller, aCIMAccessPair[] Values)
          Called by the Accessor handler when a Set operation completes.
 

Method Detail

GetResponse

public void GetResponse(iCIMAccessor Caller,
                        aCIMAccessPair[] Values)
Called by the Accessor handler when a Get operation completes.

See Also:
iCIMAccessor, aCIMAccessPair

AccessorError

public void AccessorError(iCIMAccessor Caller,
                          aCIMError Error)
Called by the Accessor handler when a complete failure has occured.

See Also:
iCIMAccessor, aCIMError

SetResponse

public void SetResponse(iCIMAccessor Caller,
                        aCIMAccessPair[] Values)
Called by the Accessor handler when a Set operation completes.

See Also:
iCIMAccessor, aCIMAccessPair