Package org.opennms.netmgt.icmp.proxy
Class PingSweepRpcModule
- java.lang.Object
-
- org.opennms.core.rpc.xml.AbstractXmlRpcModule<PingSweepRequestDTO,PingSweepResponseDTO>
-
- org.opennms.netmgt.icmp.proxy.PingSweepRpcModule
-
- All Implemented Interfaces:
RpcClient<PingSweepRequestDTO,PingSweepResponseDTO>
,RpcModule<PingSweepRequestDTO,PingSweepResponseDTO>
@Component public class PingSweepRpcModule extends AbstractXmlRpcModule<PingSweepRequestDTO,PingSweepResponseDTO>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
RPC_MODULE_ID
-
Fields inherited from interface org.opennms.core.rpc.api.RpcModule
MINION_HEADERS_MODULE
-
-
Constructor Summary
Constructors Constructor Description PingSweepRpcModule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PingSweepResponseDTO
createResponseWithException(java.lang.Throwable ex)
Called when theRpcModule
throws an exception while executing a request.java.util.concurrent.CompletableFuture<PingSweepResponseDTO>
execute(PingSweepRequestDTO request)
java.lang.Iterable<IPPollAddress>
getAddresses(java.util.List<IPPollRange> ranges)
java.lang.String
getId()
Used to route the request/responses to the appropriate module.void
setPingerFactory(PingerFactory pingerFactory)
-
Methods inherited from class org.opennms.core.rpc.xml.AbstractXmlRpcModule
marshalRequest, marshalResponse, unmarshalRequest, unmarshalResponse
-
-
-
-
Field Detail
-
RPC_MODULE_ID
public static final java.lang.String RPC_MODULE_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
execute
public java.util.concurrent.CompletableFuture<PingSweepResponseDTO> execute(PingSweepRequestDTO request)
-
createResponseWithException
public PingSweepResponseDTO createResponseWithException(java.lang.Throwable ex)
Description copied from interface:RpcModule
Called when theRpcModule
throws an exception while executing a request. This function should return a newRpcResponse
that stores a string-based representation of the exception that occurred and make this available viaRpcResponse.getErrorMessage()
once un-marshaled.- Parameters:
ex
- the exception that occurred- Returns:
- a
RpcResponse
that stores the exception
-
getId
public java.lang.String getId()
Description copied from interface:RpcModule
Used to route the request/responses to the appropriate module. This ID should be unique for every RpcModule implementation.
-
setPingerFactory
public void setPingerFactory(PingerFactory pingerFactory)
-
getAddresses
public java.lang.Iterable<IPPollAddress> getAddresses(java.util.List<IPPollRange> ranges)
-
-