Ignore:
Timestamp:
01/05/22 22:26:06 (2 years ago)
Author:
Oliver Schonefeld
Message:
  • experimental support for processing authenticated requests
File:
1 edited

Legend:

Unmodified
Added
Removed
  • SRUServer/trunk/src/main/java/eu/clarin/sru/server/SRURequest.java

    r6934 r7265  
    2828 */
    2929public interface SRURequest {
     30    /**
     31     * Get the authentication information that was extracted from the the
     32     * request.
     33     *
     34     * @return the request authentication or <code>null</code>
     35     */
     36    public SRUAuthenticationInfo getAuthentication();
     37
     38
     39    /**
     40     * Get the subject of the request.
     41     *
     42     * @return the subject of the request or <code>null</code>
     43     */
     44    public String getAuthenticationSubject();
     45
    3046
    3147    /**
Note: See TracChangeset for help on using the changeset viewer.