public class RequestData extends Domain
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
REQUEST_BASE_TYPE
Base Type for this telemetry.
|
static java.lang.String |
REQUEST_ENVELOPE_NAME
Envelope Name for this telemetry.
|
| Constructor and Description |
|---|
RequestData()
Initializes a new instance of the class.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getBaseTypeName() |
Duration |
getDuration() |
java.lang.String |
getEnvelopName() |
java.lang.String |
getHttpMethod() |
java.lang.String |
getId() |
java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.Double> |
getMeasurements() |
java.lang.String |
getName() |
java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.String> |
getProperties() |
java.lang.String |
getResponseCode() |
java.util.Date |
getStartTime() |
java.lang.String |
getUrl() |
int |
getVer() |
protected void |
InitializeFields() |
boolean |
isSuccess() |
protected void |
serializeContent(JsonTelemetryDataSerializer writer)
Serializes the beginning of this object to the passed in writer.
|
void |
setDuration(Duration value) |
void |
setHttpMethod(java.lang.String value) |
void |
setId(java.lang.String value) |
void |
setMeasurements(java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.Double> value) |
void |
setName(java.lang.String value) |
void |
setProperties(java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.String> value) |
void |
setResponseCode(java.lang.String value) |
void |
setStartTime(java.util.Date value) |
void |
setSuccess(boolean value) |
void |
setUrl(java.lang.String value) |
public static final java.lang.String REQUEST_ENVELOPE_NAME
public static final java.lang.String REQUEST_BASE_TYPE
public int getVer()
public java.lang.String getId()
public void setId(java.lang.String value)
public java.lang.String getName()
public void setName(java.lang.String value)
public java.util.Date getStartTime()
public void setStartTime(java.util.Date value)
public Duration getDuration()
public void setDuration(Duration value)
public java.lang.String getResponseCode()
public void setResponseCode(java.lang.String value)
public boolean isSuccess()
public void setSuccess(boolean value)
public java.lang.String getHttpMethod()
public void setHttpMethod(java.lang.String value)
public java.lang.String getUrl()
public void setUrl(java.lang.String value)
public java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.String> getProperties()
public void setProperties(java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.String> value)
public java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.Double> getMeasurements()
public void setMeasurements(java.util.concurrent.ConcurrentMap<java.lang.String,java.lang.Double> value)
public java.lang.String getEnvelopName()
getEnvelopName in interface SendableDatagetEnvelopName in class Domainpublic java.lang.String getBaseTypeName()
getBaseTypeName in interface SendableDatagetBaseTypeName in class Domainprotected void serializeContent(JsonTelemetryDataSerializer writer) throws java.io.IOException
DomainserializeContent in class Domainwriter - The writer to serialize this object to.java.io.IOException - Might be throw during serialization.protected void InitializeFields()
InitializeFields in class Domain