Changeset 2955 for SRUClient


Ignore:
Timestamp:
05/29/13 13:05:42 (11 years ago)
Author:
oschonef
Message:
  • make request in strict mode by default
  • make inner class static
File:
1 edited

Legend:

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

    r2943 r2955  
    7272
    7373
    74     class URIHelper {
     74    static class URIHelper {
    7575        private final URIBuilder uriBuilder;
    7676
     
    111111    /** The URL of the endpoint. */
    112112    protected final String endpointURI;
    113     /** The request should be performed in strict SRU protocol conformance mode */
    114     private boolean strictMode;
     113    /**
     114     * The request should be processed in strict or non-strict SRU protocol
     115     * conformance mode. Default value is <code>true</code>.
     116     */
     117    private boolean strictMode = true;
    115118    /** The version to be used for this request. */
    116119    protected SRUVersion version;
Note: See TracChangeset for help on using the changeset viewer.