final ByteArrayInputStream bis = new ByteArrayInputStream(this.getValue().getBytes());
final KryoReader reader = KryoReader.build().create();
final TinkerGraph tinkerGraph = TinkerGraph.open();
reader.readGraph(bis, tinkerGraph);
bis.close();
this.tinkerVertex = (TinkerVertex) tinkerGraph.v(tinkerGraph.variables().get(VERTEX_ID).get());
} catch (final Exception e) {
throw new IllegalStateException(e.getMessage(), e);
}
}
}