Package org.opennms.netmgt.icmp.proxy
Class PingSweepResponseDTO
- java.lang.Object
-
- org.opennms.netmgt.icmp.proxy.PingSweepResponseDTO
-
- All Implemented Interfaces:
RpcResponse
public class PingSweepResponseDTO extends Object implements RpcResponse
-
-
Constructor Summary
Constructors Constructor Description PingSweepResponseDTO()
PingSweepResponseDTO(Throwable ex)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addPingSweepResult(PingSweepResultDTO pingSweepResult)
boolean
equals(Object obj)
String
getErrorMessage()
Returns an error message if an error occurred, ornull
otherwise.List<PingSweepResultDTO>
getPingSweepResult()
int
hashCode()
void
setPingSweepResult(List<PingSweepResultDTO> pingSweepResult)
-
-
-
Constructor Detail
-
PingSweepResponseDTO
public PingSweepResponseDTO()
-
PingSweepResponseDTO
public PingSweepResponseDTO(Throwable ex)
-
-
Method Detail
-
getPingSweepResult
public List<PingSweepResultDTO> getPingSweepResult()
-
setPingSweepResult
public void setPingSweepResult(List<PingSweepResultDTO> pingSweepResult)
-
addPingSweepResult
public void addPingSweepResult(PingSweepResultDTO pingSweepResult)
-
getErrorMessage
public String getErrorMessage()
Description copied from interface:RpcResponse
Returns an error message if an error occurred, ornull
otherwise.- Specified by:
getErrorMessage
in interfaceRpcResponse
- Returns:
- an error message if an error occurred, or
null
otherwise
-
-