protected static void executeUnsignedQueryRequest()

in src/main/java/com/amazonaws/neptune/client/rdf4j/NeptuneRdf4JSigV4Example.java [152:167]


    protected static void executeUnsignedQueryRequest(final String endpointUrl) {

        // use the simple constructor version which skips auth initialization
        final NeptuneSparqlRepository neptuneSparqlRepo = new NeptuneSparqlRepository(endpointUrl);

        try {

            neptuneSparqlRepo.init();
            evaluateAndPrintQueryResult(SAMPLE_QUERY, neptuneSparqlRepo);

        } finally {

            neptuneSparqlRepo.shutDown();

        }
    }