Ignore:
Timestamp:
08/28/12 19:56:00 (12 years ago)
Author:
oschonef
Message:

OT: I saw tail lights last night in a dream about my first wife ...

File:
1 edited

Legend:

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

    r2121 r2163  
    2222
    2323
     24
     25/**
     26 * Abstract base class for SRU requests.
     27 *
     28 * @see SRUExplainResponse
     29 * @see SRUScanResponse
     30 * @see SRUSearchRetrieveResponse
     31 */
    2432abstract class SRUAbstractRequest {
    2533    static final String PARAM_OPERATION                = "operation";
     
    113121
    114122
     123    /**
     124     * Constructor.
     125     *
     126     * @param endpointURI
     127     *            the URI of the endpoint
     128     * @throws NullPointerException
     129     *             if any required argument is null
     130     */
    115131    protected SRUAbstractRequest(String endpointURI) {
    116132        if (endpointURI == null) {
     
    124140     * Get the endpoint URI.
    125141     *
    126      * @return the endpoiunt URI
     142     * @return the endpoint URI
    127143     */
    128144    public String getEndpointURI() {
Note: See TracChangeset for help on using the changeset viewer.