Statistics
| Revision:

root / trunk / applications / appCatalogYNomenclatorClient / src / es / gva / cit / catalogClient / drivers / ICatalogServiceDriver.java @ 2047

History | View | Annotate | Download (540 Bytes)

1 2047 luisw
package es.gva.cit.catalogClient.drivers;
2
import java.net.URL;
3
4
import org.w3c.dom.Node;
5
6
import es.gva.cit.catalogClient.querys.Query;
7
8
public interface ICatalogServiceDriver {
9
10
        boolean isProtocolSupported(URL url);
11
12
        Node[] getCapabilities(URL url);
13
14
    Node[] getRecords(URL url, Query query,int firstRecord);
15
16
    //This method is used to update the client parameters
17
    boolean setParameters(Node[] nodes);
18
19
    //Return a message: It is/isn't the supported protocol
20
    String getServerAnswerReady();
21
22
}