Changeset 7075


Ignore:
Timestamp:
11/11/16 15:17:30 (8 years ago)
Author:
Oliver Schonefeld
Message:
  • add constants for some extra request parameters
File:
1 edited

Legend:

Unmodified
Added
Removed
  • SRUClient/trunk/src/main/java/eu/clarin/sru/client/SRUClientConstants.java

    r6938 r7075  
    2020 * Some constants for the SRUClient.
    2121 */
    22 public class SRUClientConstants {
     22public final class SRUClientConstants {
    2323
    2424    /** constant record data schema parser to match any schema */
     
    2828    public static final String QUERY_TYPE_CQL = "cql";
    2929
     30    /**
     31     * constant for extra request parameter "x-unlimited-resultset" (NB: only
     32     * applicable for SRUServer implementation)
     33     */
     34    public static final String X_UNLIMITED_RESULTSET =
     35            "x-unlimited-resultset";
     36
     37    /**
     38     * constant for extra request parameter "x-unlimited-termlist" (NB: only
     39     * applicable for SRUServer implementation)
     40     */
     41    public static final String X_UNLIMITED_TERMLIST =
     42            "x-unlimited-termlist";
     43
     44    /**
     45     * constant for extra request parameter "x-indent-response" (NB: only
     46     * applicable for SRUServer implementation)
     47     */
     48    public static final String X_INDENT_RESPONSE =
     49            "x-indent-response";
     50
     51
     52    /* hide constructor */
     53    private SRUClientConstants() {
     54    }
     55
    3056} // class SRUClientConstants
Note: See TracChangeset for help on using the changeset viewer.