From 355c5aafa6ba12aca9dd81c86391788d0ea215d1 Mon Sep 17 00:00:00 2001 From: j2blake Date: Wed, 22 Jun 2011 15:26:29 +0000 Subject: [PATCH] No longer used, or in active development. --- .../webapp/auth/policy/Ids2QueryBindings.java | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 webapp/src/edu/cornell/mannlib/vitro/webapp/auth/policy/Ids2QueryBindings.java diff --git a/webapp/src/edu/cornell/mannlib/vitro/webapp/auth/policy/Ids2QueryBindings.java b/webapp/src/edu/cornell/mannlib/vitro/webapp/auth/policy/Ids2QueryBindings.java deleted file mode 100644 index 8cd2767d5..000000000 --- a/webapp/src/edu/cornell/mannlib/vitro/webapp/auth/policy/Ids2QueryBindings.java +++ /dev/null @@ -1,18 +0,0 @@ -/* $This file is distributed under the terms of the license in /doc/license.txt$ */ - -package edu.cornell.mannlib.vitro.webapp.auth.policy; - -import java.util.List; - -import com.hp.hpl.jena.query.QuerySolutionMap; - -import edu.cornell.mannlib.vitro.webapp.auth.identifier.IdentifierBundle; -import edu.cornell.mannlib.vitro.webapp.auth.requestedAction.ifaces.RequestedAction; - -public interface Ids2QueryBindings { - /** - * Returns null if no binding can be made. In some implementations this - * might be different than an empty QuerySolutionMap. Must be thread safe. - */ - public List makeScopeBinding(IdentifierBundle ids, RequestedAction action ); -}