Package org.opennms.netmgt.icmp.proxy
Class PingSequence
- java.lang.Object
-
- org.opennms.netmgt.icmp.proxy.PingSequence
-
public class PingSequence extends Object
-
-
Constructor Summary
Constructors Constructor Description PingSequence(int sequenceNumber, Throwable throwable)
PingSequence(int sequenceNumber, PingResponse response)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Throwable
getError()
PingResponse
getResponse()
int
getSequenceNumber()
boolean
isError()
boolean
isSuccess()
boolean
isTimeout()
-
-
-
Constructor Detail
-
PingSequence
public PingSequence(int sequenceNumber, PingResponse response)
-
PingSequence
public PingSequence(int sequenceNumber, Throwable throwable)
-
-
Method Detail
-
isTimeout
public boolean isTimeout()
-
isError
public boolean isError()
-
getSequenceNumber
public int getSequenceNumber()
-
getError
public Throwable getError()
-
isSuccess
public boolean isSuccess()
-
getResponse
public PingResponse getResponse()
-
-