All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.purl.sword.server.SWORDServer Maven / Gradle / Ivy

The newest version!
/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.purl.sword.server;

import org.purl.sword.base.AtomDocumentRequest;
import org.purl.sword.base.AtomDocumentResponse;
import org.purl.sword.base.Deposit;
import org.purl.sword.base.DepositResponse;
import org.purl.sword.base.SWORDAuthenticationException;
import org.purl.sword.base.SWORDErrorException;
import org.purl.sword.base.SWORDException;
import org.purl.sword.base.ServiceDocument;
import org.purl.sword.base.ServiceDocumentRequest;

/**
 * An abstract interface to be implemented by repositories wishing to provide
 * a SWORD compliant service.
 *
 * http://www.ukoln.ac.uk/repositories/digirep/index/SWORD
 *
 * @author Stuart Lewis
 */
public interface SWORDServer {

    /**
     * Answer a Service Document request sent on behalf of a user
     *
     * @param sdr The Service Document Request object
     * @return The ServiceDocument representing the service document
     * @throws SWORDAuthenticationException Thrown if the authentication fails
     * @throws SWORDErrorException          Thrown if there was an error with the input not matching
     *                                      the capabilities of the server
     * @throws SWORDException               Thrown in an un-handalable Exception occurs.
     *                                      This will be dealt with by sending a HTTP 500 Server Exception
     */
    public ServiceDocument doServiceDocument(ServiceDocumentRequest sdr)
        throws SWORDAuthenticationException, SWORDErrorException, SWORDException;

    /**
     * Answer a SWORD deposit
     *
     * @param deposit The Deposit object
     * @return The response to the deposit
     * @throws SWORDAuthenticationException Thrown if the authentication fails
     * @throws SWORDErrorException          Thrown if there was an error with the input not matching
     *                                      the capabilities of the server
     * @throws SWORDException               Thrown if an un-handalable Exception occurs.
     *                                      This will be dealt with by sending a HTTP 500 Server Exception
     */
    public DepositResponse doDeposit(Deposit deposit)
        throws SWORDAuthenticationException, SWORDErrorException, SWORDException;

    /**
     * Answer a request for an entry document
     *
     * @param adr The Atom Document Request object
     * @return The response to the atom document request
     * @throws SWORDAuthenticationException Thrown if the authentication fails
     * @throws SWORDErrorException          Thrown if there was an error with the input not matching
     *                                      the capabilities of the server
     * @throws SWORDException               Thrown if an un-handalable Exception occurs.
     *                                      This will be dealt with by sending a HTTP 500 Server Exception
     */
    public AtomDocumentResponse doAtomDocument(AtomDocumentRequest adr)
        throws SWORDAuthenticationException, SWORDErrorException, SWORDException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy