com.tivoli.twg.snmp
Interface iTWGRemoteSNMPResponse


Deprecated. Use SNMPRemoteResponse

public interface iTWGRemoteSNMPResponse

This interface is designed to work in conjunction with TWGRemoteSNMP. It is to be implemented by user of that interface to allow the results to be communicated back. Since all operations of the TWGRemoteSNMP interface methods 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 TWGRemoteSNMP that originated the request.

See Also:
TWGRemoteSNMP, TWGRemoteMIB, SNMPPDU

Method Summary
 void SNMPError(TWGRemoteSNMP Caller, java.lang.String OID, long MOID)
          Deprecated. Use SNMPRemoteResponse.response
 void SNMPGetNextResponse(TWGRemoteSNMP Caller, long MOID, java.lang.String OID, java.lang.Object Value, int Type, int RC)
          Deprecated. Use SNMPRemoteResponse.response
 void SNMPGetResponse(TWGRemoteSNMP Caller, long MOID, java.lang.String OID, java.lang.Object Value, int Type, int RC)
          Deprecated. Use SNMPRemoteResponse.response
 void SNMPSetResponse(TWGRemoteSNMP Caller, long MOID, java.lang.String OID, int RC)
          Deprecated. Use SNMPRemoteResponse.response
 

Method Detail

SNMPError

public void SNMPError(TWGRemoteSNMP Caller,
                      java.lang.String OID,
                      long MOID)
Deprecated. Use SNMPRemoteResponse.response

Called by the implemantion of TWGRemoteSNMP when an error has occured on a submitted transaction.

See Also:
TWGRemoteSNMP

SNMPGetResponse

public void SNMPGetResponse(TWGRemoteSNMP Caller,
                            long MOID,
                            java.lang.String OID,
                            java.lang.Object Value,
                            int Type,
                            int RC)
Deprecated. Use SNMPRemoteResponse.response

Called by the implemantion of TWGRemoteSNMP when a SNMP Get request has completed successfully.

See Also:
TWGRemoteSNMP, SNMPPDU, TWGMIBItem

SNMPGetNextResponse

public void SNMPGetNextResponse(TWGRemoteSNMP Caller,
                                long MOID,
                                java.lang.String OID,
                                java.lang.Object Value,
                                int Type,
                                int RC)
Deprecated. Use SNMPRemoteResponse.response

Called by the implemantion of TWGRemoteSNMP when a SNMP GetNext request has completed successfully.

See Also:
TWGRemoteSNMP, SNMPPDU, TWGMIBItem

SNMPSetResponse

public void SNMPSetResponse(TWGRemoteSNMP Caller,
                            long MOID,
                            java.lang.String OID,
                            int RC)
Deprecated. Use SNMPRemoteResponse.response

Called by the implemantion of TWGRemoteSNMP when a SNMP Set request has completed successfully.

See Also:
TWGRemoteSNMP, SNMPPDU, TWGMIBItem