if (masterCredendials == null) {
throw new RuntimeException("missing master-credentials in neo4j-server.properties");
}
final SingleUserAuthenticationService adminAuth = new SingleUserAuthenticationService(masterCredendials);
Database database = neoServer.getDatabase();
GraphDatabaseAPI graphDatabaseAPI = database.getGraph();
final MultipleAuthenticationService users = new MultipleAuthenticationService(graphDatabaseAPI);
adminAuthenticationFilter = new AuthenticationFilter("neo4j-admin", adminAuth);
adminPath = getMyMountpoint(configurator) + "/*";
webServer.addFilter(adminAuthenticationFilter, adminPath);