Ignore:
Timestamp:
2008-05-14T13:27:08+12:00 (16 years ago)
Author:
ak19
Message:

Introduced GSearchConnection member indexName set in its constructor by FedoraGS3Connection

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/trunk/gs3-webservices-democlient/src/GS3Fedora/org/greenstone/fedora/services/FedoraToGS3Interface.java

    r15222 r15437  
    2323import java.util.Map;
    2424
    25 
    2625/**
    27  * The following methods return the same data as FedoraGS3DL, but formatted as
    28  * Greenstone Response-Message XML. This way our java-client can parse   
    29  * the returned XML in the same way and store them in the same datastructures.
     26 * Most of the following methods return the same data as FedoraGS3DL, but
     27 * formatted as Greenstone Response-Message XML. This way our java-client can
     28 * parse the returned XML in the same way and store them in the same data
     29 * structures.
    3030 * @author ak19
    3131*/
     
    5454        public static final String COMMA = ",";
    5555    }
     56   
     57        /* FEDORA GENERIC SEARCH RELATED */
     58    /** @return the gSearchWSDLURL, the url of the WSDL for the
     59     * FedoraGSearch web services */
     60    public String getGSearchWSDLURL();
     61   
     62    /** Sets the member variable gSearchWSDLURL that specify the location of
     63     * the WSDL file of FedoraGSearch's web services. Then it attempts
     64     * to instantiate a connection to those web services.
     65     * @param url is the new url of the GSearch web services WSDL file */
     66    public void setGSearchWSDLURL(String url);
     67   
     68    /** @return the gSearchIndexName, the name of the index Fedora Generic
     69     * Search will search in (where GS3 docs have been indexed into). */
     70    public String getGSearchIndexName();
     71   
     72    /** Sets the member variable gSearchIndexName that specifies the name
     73     * of the index containing indexed GS3 documents. Then it attempts
     74     * to instantiate a connection to the Fedora GSearch web services using
     75     * this changed value for indexName.
     76     * @param indexName is the new name of the index containing indexed GS3
     77     * docs that GSearch should search in. */
     78    public void setGSearchIndexName(String indexName);
    5679   
    5780    /* DESCRIBE SERVICES */
Note: See TracChangeset for help on using the changeset viewer.