Class DnsLookupRequestDTO
- java.lang.Object
-
- org.opennms.netmgt.provision.dns.client.rpc.DnsLookupRequestDTO
-
- All Implemented Interfaces:
RpcRequest
public class DnsLookupRequestDTO extends Object implements RpcRequest
-
-
Field Summary
-
Fields inherited from interface org.opennms.core.rpc.api.RpcRequest
TAG_CLASS_NAME, TAG_DESCRIPTION, TAG_IP_ADDRESS, TAG_NODE_ID, TAG_NODE_LABEL
-
-
Constructor Summary
Constructors Constructor Description DnsLookupRequestDTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addTracingInfo(String key, String value)
boolean
equals(Object obj)
String
getHostRequest()
String
getLocation()
Used to route the request to the appropriate location.QueryType
getQueryType()
io.opentracing.Span
getSpan()
String
getSystemId()
Used to route the request to a particular system at the given location.Long
getTimeToLiveMs()
When using JMS, the request will fail if no response was received in this many milliseconds.Map<String,String>
getTracingInfo()
RPC clients expose tracing info as tags there by giving more context to each RPC trace.int
hashCode()
void
setHostRequest(String hostRequest)
void
setLocation(String location)
void
setQueryType(QueryType queryType)
void
setSystemId(String systemId)
-
-
-
Method Detail
-
getLocation
public String getLocation()
Description copied from interface:RpcRequest
Used to route the request to the appropriate location.- Specified by:
getLocation
in interfaceRpcRequest
-
setSystemId
public void setSystemId(String systemId)
-
getSystemId
public String getSystemId()
Description copied from interface:RpcRequest
Used to route the request to a particular system at the given location.- Specified by:
getSystemId
in interfaceRpcRequest
-
getTimeToLiveMs
public Long getTimeToLiveMs()
Description copied from interface:RpcRequest
When using JMS, the request will fail if no response was received in this many milliseconds.- Specified by:
getTimeToLiveMs
in interfaceRpcRequest
-
getHostRequest
public String getHostRequest()
-
setHostRequest
public void setHostRequest(String hostRequest)
-
setLocation
public void setLocation(String location)
-
getQueryType
public QueryType getQueryType()
-
setQueryType
public void setQueryType(QueryType queryType)
-
getTracingInfo
public Map<String,String> getTracingInfo()
Description copied from interface:RpcRequest
RPC clients expose tracing info as tags there by giving more context to each RPC trace. Implementations should add tags defined above if they are available.- Specified by:
getTracingInfo
in interfaceRpcRequest
-
getSpan
public io.opentracing.Span getSpan()
- Specified by:
getSpan
in interfaceRpcRequest
-
-