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

org.lockss.ws.control.AuControlService Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
/*

 Copyright (c) 2015-2019 Board of Trustees of Leland Stanford Jr. University,
 all rights reserved.

 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:

 The above copyright notice and this permission notice shall be included in
 all copies or substantial portions of the Software.

 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 STANFORD UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
 IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

 Except as contained in this notice, the name of Stanford University shall not
 be used in advertising or otherwise to promote the sale, use or other dealings
 in this Software without prior written authorization from Stanford University.

 */
package org.lockss.ws.control;

import java.util.List;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebService;
import org.lockss.ws.entities.CheckSubstanceResult;
import org.lockss.ws.entities.LockssWebServicesFault;
import org.lockss.ws.entities.RequestCrawlResult;
import org.lockss.ws.entities.RequestDeepCrawlResult;
import org.lockss.ws.entities.RequestAuControlResult;

/**
 * The AU Control SOAP web service interface.
 */
@WebService
public interface AuControlService {
  /**
   * Provides an indication of whether an archival unit has substance.
   * 
   * @param auId A String with the identifier (auid) of the archival unit.
   * @return a CheckSubstanceResult with the result of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  CheckSubstanceResult checkSubstanceById(@WebParam(name = "auId") String auId)
      throws LockssWebServicesFault;

  /**
   * Provides an indication of whether the archival units defined by a list with
   * their identifiers have substance.
   * 
   * @param auIds A {@code List} with the identifiers (auids) of the
   *              archival units.
   * @return a {@code List} with the results of the
   *         operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  List checkSubstanceByIdList(
      @WebParam(name = "auIds") List auIds)
	  throws LockssWebServicesFault;

  /**
   * Requests the crawl of an archival unit.
   * 
   * @param auId     A String with the identifier (auid) of the archival unit.
   * @param priority An Integer with the priority of the crawl request.
   * @param force    A boolean with true if the request is to be
   *                 made even in the presence of some anomalies,
   *                 false otherwise.
   * @return a RequestCrawlResult with the result of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  RequestCrawlResult requestCrawlById(@WebParam(name = "auId") String auId,
      @WebParam(name = "priority") Integer priority,
      @WebParam(name = "force") boolean force)
      throws LockssWebServicesFault;

  /**
   * Requests the crawl of the archival units defined by a list with their
   * identifiers.
   * 
   * @param auIds    A {@code List} with the identifiers (auids) of the
   *                 archival units.
   * @param priority An Integer with the priority of the crawl request.
   * @param force    A boolean with true if the request is to be
   *                 made even in the presence of some anomalies,
   *                 false otherwise.
   * @return a {@code List} with the results of the
   *         operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  List requestCrawlByIdList(
      @WebParam(name = "auIds") List auIds,
      @WebParam(name = "priority") Integer priority,
      @WebParam(name = "force") boolean force) throws LockssWebServicesFault;

  /**
   * Requests the deep crawl of an archival unit.
   * 
   * @param auId         A String with the identifier (auid) of the archival
   *                     unit.
   * @param refetchDepth An int with the depth of the crawl request.
   * @param priority     An Integer with the priority of the crawl request.
   * @param force        A boolean with true if the request is to
   *                     be made even in the presence of some anomalies,
   *                     false otherwise.
   * @return a RequestDeepCrawlResult with the result of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  RequestDeepCrawlResult requestDeepCrawlById(
      @WebParam(name = "auId") String auId,
      @WebParam(name = "refetchDepth") int refetchDepth,
      @WebParam(name = "priority") Integer priority,
      @WebParam(name = "force") boolean force) throws LockssWebServicesFault;

  /**
   * Requests the deep crawl of the archival units defined by a list with their
   * identifiers.
   * 
   * @param auIds        A {@code List} with the identifiers (auids) of
   *                     the archival units.
   * @param refetchDepth An int with the depth of the crawl request.
   * @param priority     An Integer with the priority of the crawl request.
   * @param force        A boolean with true if the request is to
   *                     be made even in the presence of some anomalies,
   *                     false otherwise.
   * @return a {@code List} with the results of the
   *         operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  List requestDeepCrawlByIdList(
      @WebParam(name = "auIds") List auIds,
      @WebParam(name = "refetchDepth") int refetchDepth,
      @WebParam(name = "priority") Integer priority,
      @WebParam(name = "force") boolean force) throws LockssWebServicesFault;

  /**
   * Requests the polling of an archival unit.
   * 
   * @param auId A String with the identifier (auid) of the archival unit.
   * @return a RequestAuControlResult with the result of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  RequestAuControlResult requestPollById(@WebParam(name = "auId") String auId)
      throws LockssWebServicesFault;

  /**
   * Requests the polling of the archival units defined by a list with their
   * identifiers.
   * 
   * @param auIds A {@code List} with the identifiers (auids) of the
   *              archival units.
   * @return a {@code List} with the results of the
   *         operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  List requestPollByIdList(
      @WebParam(name = "auIds") List auIds)
      throws LockssWebServicesFault;

  /**
   * Requests the metadata indexing of an archival unit.
   * 
   * @param auId  A String with the identifier (auid) of the archival unit.
   * @param force A boolean with true if the request is to be made
   *              even in the presence of some anomalies, false
   *              otherwise.
   * @return a RequestAuControlResult with the result of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  RequestAuControlResult requestMdIndexingById(
      @WebParam(name = "auId") String auId,
      @WebParam(name = "force") boolean force) throws LockssWebServicesFault;

  /**
   * Requests the metadata indexing of the archival units defined by a list with
   * their identifiers.
   * 
   * @param auIds A List with the identifiers (auids) of the archival
   *              units.
   * @param force A boolean with true if the request is to be made
   *              even in the presence of some anomalies, false
   *              otherwise.
   * @return a List with the results of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  List requestMdIndexingByIdList(
      @WebParam(name = "auIds") List auIds,
      @WebParam(name = "force") boolean force) throws LockssWebServicesFault;

  /**
   * Disables the metadata indexing of an archival unit.
   * 
   * @param auId A String with the identifier (auid) of the archival unit.
   * @return a RequestAuControlResult with the result of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  RequestAuControlResult disableMdIndexingById(
      @WebParam(name = "auId") String auId) throws LockssWebServicesFault;

  /**
   * Disables the metadata indexing of the archival units defined by a list with
   * their identifiers.
   * 
   * @param auIds A List with the identifiers (auids) of the archival
   *              units.
   * @return a List with the results of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  List disableMdIndexingByIdList(
      @WebParam(name = "auIds") List auIds)
      throws LockssWebServicesFault;

  /**
   * Enables the metadata indexing of an archival unit.
   * 
   * @param auId A String with the identifier (auid) of the archival unit.
   * @return a RequestAuControlResult with the result of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  RequestAuControlResult enableMdIndexingById(
      @WebParam(name = "auId") String auId) throws LockssWebServicesFault;

  /**
   * Enables the metadata indexing of the archival units defined by a list with
   * their identifiers.
   * 
   * @param auIds A List with the identifiers (auids) of the archival
   *              units.
   * @return a List with the results of the operation.
   * @throws LockssWebServicesFault if there are problems.
   */
  @WebMethod
  List enableMdIndexingByIdList(
      @WebParam(name = "auIds") List auIds)
      throws LockssWebServicesFault;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy