source: SRUServer/trunk/src/main/java/eu/clarin/sru/server/utils/SRUAuthenticationInfoProviderFactory.java @ 7265

Last change on this file since 7265 was 7265, checked in by Oliver Schonefeld, 2 years ago
  • experimental support for processing authenticated requests
  • Property svn:eol-style set to native
File size: 650 bytes
Line 
1package eu.clarin.sru.server.utils;
2
3import java.util.Map;
4
5import javax.servlet.ServletContext;
6
7import eu.clarin.sru.server.SRUAuthenticationInfoProvider;
8import eu.clarin.sru.server.SRUConfigException;
9
10public interface SRUAuthenticationInfoProviderFactory {
11    /**
12     * Create a authentication info provider.
13     *
14     * @param context
15     * @param params
16     * @return
17     * @throws SRUConfigException
18     */
19    public SRUAuthenticationInfoProvider createAuthenticationInfoProvider(
20            ServletContext context, Map<String, String> params)
21            throws SRUConfigException;
22
23} // interface SRUAuthenticationProviderFactory
Note: See TracBrowser for help on using the repository browser.