Package net.dona.doip
Class DoipRequestHeaders
java.lang.Object
net.dona.doip.DoipRequestHeaders
- Direct Known Subclasses:
DoipRequestHeadersWithRequestId
The initial segment of a properly formed DOIP request, except the requestId which will be generated by processing code.
See also
DoipRequestHeadersWithRequestId
.
Can be serialized or deserialized using Gson.-
Field Summary
FieldsModifier and TypeFieldDescriptioncom.google.gson.JsonObject
Attributes supplied to the operation.com.google.gson.JsonElement
Authentication information; the structure depends on the authentication method used.The id of the calling entity.com.google.gson.JsonElement
Input supplied to the operation, when supplied in "compact" form as a single JSON segment.The id of the operation to be performed.The id of the object on which the operation is to be performed. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
clientId
The id of the calling entity. -
targetId
The id of the object on which the operation is to be performed. -
operationId
The id of the operation to be performed. -
attributes
public com.google.gson.JsonObject attributesAttributes supplied to the operation. -
authentication
public com.google.gson.JsonElement authenticationAuthentication information; the structure depends on the authentication method used. -
input
public com.google.gson.JsonElement inputInput supplied to the operation, when supplied in "compact" form as a single JSON segment. More generally, input to the operation is supplied using the remaining segments of the request.
-
-
Constructor Details
-
DoipRequestHeaders
public DoipRequestHeaders()
-