String neptuneUri = propertyHelper.getProperty(
NEPTUNE_URI.getConstantValue());
String tmpPort = propertyHelper.getProperty(
NEPTUNE_PORT.getConstantValue());
Integer binaryPort = Integer.
parseInt(tmpPort);
String trustStorePath = propertyHelper.getProperty(
TRUSTSTORE.getConstantValue());
Cluster.Builder builder = Cluster.
build();
builder.addContactPoint(neptuneUri);
builder.port(binaryPort);
builder.enableSsl(true);
builder.trustStore(trustStorePath);
Cluster cluster = builder.create();
cluster.connect();
DriverRemoteConnection dc = DriverRemoteConnection.
using(cluster);
GraphTraversalSource =
traversal().withRemote(dc);