Package org.openrdf.http.server.filters

Examples of org.openrdf.http.server.filters.ScopedConnectionTagger


  protected Restlet createRepositoryRouter(Context c) {
    Router router = new Router(c);
    router.setDefaultMatchingMode(Template.MODE_STARTS_WITH);
    router.attach("/" + CONNECTIONS, createExplicitConnectionRouter(c));
    router.attachDefault(new ScopedConnectionTagger(c, createImplicitConnectionRouter(c)));
    return router;
  }
View Full Code Here

TOP

Related Classes of org.openrdf.http.server.filters.ScopedConnectionTagger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.