org.lockss.safenet.EntitlementRegistryClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lockss-core Show documentation
Show all versions of lockss-core Show documentation
The Slimmed Down LOCKSS Daemon Core
The newest version!
package org.lockss.safenet;
import java.io.IOException;
import org.lockss.app.LockssManager;
public interface EntitlementRegistryClient extends LockssManager {
boolean isUserEntitled(String issn, String institution, String start, String end) throws IOException;
String getInstitution(String scope) throws IOException;
String getPublisher(String issn, String start, String end) throws IOException;
PublisherWorkflow getPublisherWorkflow(String publisherGuid) throws IOException;
}