Search in sources :

Example 1 with Response

use of org.bcos.web3j.protocol.core.Response in project web3sdk by FISCO-BCOS.

the class RawResponseDeserializer method deserialize.

@Override
public Response deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException {
    Response deserializedResponse = (Response) defaultDeserializer.deserialize(jp, ctxt);
    deserializedResponse.setRawResponse(getRawResponse(jp));
    return deserializedResponse;
}
Also used : Response(org.bcos.web3j.protocol.core.Response)

Aggregations

Response (org.bcos.web3j.protocol.core.Response)1