Class RequisitionRequestDTO
- java.lang.Object
-
- org.opennms.netmgt.provision.persist.rpc.RequisitionRequestDTO
-
- All Implemented Interfaces:
RpcRequest
public class RequisitionRequestDTO extends java.lang.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 RequisitionRequestDTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addTracingInfo(java.lang.String key, java.lang.String value)
boolean
equals(java.lang.Object other)
java.lang.String
getLocation()
Used to route the request to the appropriate location.RequisitionRequest
getProviderRequest(RequisitionProvider provider)
io.opentracing.Span
getSpan()
java.lang.String
getSystemId()
Used to route the request to a particular system at the given location.java.lang.Long
getTimeToLiveMs()
When using JMS, the request will fail if no response was received in this many milliseconds.java.util.Map<java.lang.String,java.lang.String>
getTracingInfo()
RPC clients expose tracing info as tags there by giving more context to each RPC trace.java.lang.String
getType()
int
hashCode()
void
setLocation(java.lang.String location)
void
setProviderRequest(java.lang.String marshaledProviderRequest)
void
setProviderRequest(RequisitionRequest providerRequest)
void
setSystemId(java.lang.String systemId)
void
setTimeToLiveMs(java.lang.Long timeToLiveMs)
void
setType(java.lang.String type)
-
-
-
Method Detail
-
getType
public java.lang.String getType()
-
setType
public void setType(java.lang.String type)
-
getLocation
public java.lang.String getLocation()
Description copied from interface:RpcRequest
Used to route the request to the appropriate location.- Specified by:
getLocation
in interfaceRpcRequest
-
setLocation
public void setLocation(java.lang.String location)
-
setSystemId
public void setSystemId(java.lang.String systemId)
-
getSystemId
public java.lang.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 java.lang.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
-
setTimeToLiveMs
public void setTimeToLiveMs(java.lang.Long timeToLiveMs)
-
getProviderRequest
public RequisitionRequest getProviderRequest(RequisitionProvider provider)
-
setProviderRequest
public void setProviderRequest(RequisitionRequest providerRequest)
-
setProviderRequest
public void setProviderRequest(java.lang.String marshaledProviderRequest)
-
getTracingInfo
public java.util.Map<java.lang.String,java.lang.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
-
addTracingInfo
public void addTracingInfo(java.lang.String key, java.lang.String value)
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-