Package org.openrdf.http.server.auth.cas

Examples of org.openrdf.http.server.auth.cas.CasAuthFilter


  protected Restlet createSessionPath(Context c) {
    Restlet result = new Finder(c, SessionResource.class);

    String casServerURL = System.getProperty("org.openrdf.auth.cas.server");
    if (casServerURL != null) {
      result = new CasAuthFilter(casServerURL, c, result);
    }
    else {
      logger.info("System property 'org.openrdf.auth.cas.server' not defined, skipping CAS authentication");
    }
View Full Code Here

TOP

Related Classes of org.openrdf.http.server.auth.cas.CasAuthFilter

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.