Class GraphSONMessageSerializerV3d0
- java.lang.Object
 - 
- org.apache.tinkerpop.gremlin.driver.ser.AbstractMessageSerializer<org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper>
 - 
- org.apache.tinkerpop.gremlin.driver.ser.AbstractGraphSONMessageSerializerV2d0
 - 
- org.apache.tinkerpop.gremlin.driver.ser.GraphSONMessageSerializerV3d0
 
 
 
 
- 
- All Implemented Interfaces:
 MessageSerializer<org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper>,MessageTextSerializer<org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper>
public final class GraphSONMessageSerializerV3d0 extends AbstractGraphSONMessageSerializerV2d0 implements MessageTextSerializer<org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper>
Serialize results to JSON with version 3.0.x schema and the extended module.- Author:
 - Stephen Mallette (http://stephen.genoprime.com)
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class org.apache.tinkerpop.gremlin.driver.ser.AbstractGraphSONMessageSerializerV2d0
AbstractGraphSONMessageSerializerV2d0.GremlinServerModule, AbstractGraphSONMessageSerializerV2d0.RequestMessageDeserializer, AbstractGraphSONMessageSerializerV2d0.RequestMessageSerializer, AbstractGraphSONMessageSerializerV2d0.ResponseMessageDeserializer, AbstractGraphSONMessageSerializerV2d0.ResponseMessageSerializer 
 - 
 
- 
Field Summary
- 
Fields inherited from class org.apache.tinkerpop.gremlin.driver.ser.AbstractGraphSONMessageSerializerV2d0
mapper 
- 
Fields inherited from class org.apache.tinkerpop.gremlin.driver.ser.AbstractMessageSerializer
TOKEN_IO_REGISTRIES 
 - 
 
- 
Constructor Summary
Constructors Constructor Description GraphSONMessageSerializerV3d0()Creates a default GraphSONMessageSerializer.GraphSONMessageSerializerV3d0(GraphSONMapper mapper)Deprecated.GraphSONMessageSerializerV3d0(GraphSONMapper.Builder mapperBuilder)Create a GraphSONMessageSerializer with a providedGraphSONMapper.Builder. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RequestMessagedeserializeRequest(String msg)ResponseMessagedeserializeResponse(String msg)String[]mimeTypesSupported()The list of mime types that the serializer supports.StringserializeRequestAsString(RequestMessage requestMessage)StringserializeResponseAsString(ResponseMessage responseMessage)- 
Methods inherited from class org.apache.tinkerpop.gremlin.driver.ser.AbstractGraphSONMessageSerializerV2d0
configure, deserializeRequest, deserializeResponse, getMapper, serializeRequestAsBinary, serializeResponseAsBinary 
- 
Methods inherited from class org.apache.tinkerpop.gremlin.driver.ser.AbstractMessageSerializer
addIoRegistries, getListStringFromConfig, tryInstanceMethod 
- 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.apache.tinkerpop.gremlin.driver.MessageSerializer
configure, deserializeRequest, deserializeResponse, getMapper, serializeRequestAsBinary, serializeResponseAsBinary 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
GraphSONMessageSerializerV3d0
public GraphSONMessageSerializerV3d0()
Creates a default GraphSONMessageSerializer.By default this will internally instantiate a
GraphSONMapperand register aAbstractGraphSONMessageSerializerV2d0.GremlinServerModuleandGraphSONXModuleV3d0to the mapper. 
- 
GraphSONMessageSerializerV3d0
@Deprecated public GraphSONMessageSerializerV3d0(GraphSONMapper mapper)
Deprecated.Create a GraphSONMessageSerializer from aGraphSONMapper. Deprecated, useGraphSONMessageSerializerV3d0(GraphSONMapper.Builder)instead. 
- 
GraphSONMessageSerializerV3d0
public GraphSONMessageSerializerV3d0(GraphSONMapper.Builder mapperBuilder)
Create a GraphSONMessageSerializer with a providedGraphSONMapper.Builder. Note that to make this mapper usable in the context of request messages and responses, this method will automatically register aAbstractGraphSONMessageSerializerV2d0.GremlinServerModuleto the provided mapper. 
 - 
 
- 
Method Detail
- 
mimeTypesSupported
public String[] mimeTypesSupported()
Description copied from interface:MessageSerializerThe list of mime types that the serializer supports.- Specified by:
 mimeTypesSupportedin interfaceMessageSerializer<org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper>
 
- 
deserializeResponse
public ResponseMessage deserializeResponse(String msg) throws SerializationException
- Specified by:
 deserializeResponsein interfaceMessageTextSerializer<org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper>- Throws:
 SerializationException
 
- 
serializeResponseAsString
public String serializeResponseAsString(ResponseMessage responseMessage) throws SerializationException
- Specified by:
 serializeResponseAsStringin interfaceMessageTextSerializer<org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper>- Throws:
 SerializationException
 
- 
deserializeRequest
public RequestMessage deserializeRequest(String msg) throws SerializationException
- Specified by:
 deserializeRequestin interfaceMessageTextSerializer<org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper>- Throws:
 SerializationException
 
- 
serializeRequestAsString
public String serializeRequestAsString(RequestMessage requestMessage) throws SerializationException
- Specified by:
 serializeRequestAsStringin interfaceMessageTextSerializer<org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper>- Throws:
 SerializationException
 
 - 
 
 -