source: trunk/java-client/org/nzdl/gsdl/service/NzdlService.java@ 2098

Last change on this file since 2098 was 2098, checked in by paynter, 23 years ago

Updated main directory to org.nzdl.gsdl

  • Property svn:keywords set to Author Date Id Revision
File size: 820 bytes
Line 
1
2package org.nzdl.gsdl.service;
3
4import java.util.*;
5
6public interface NzdlService {
7
8 public void configure( String key, Set values );
9 public Set getCollectionSet( );
10 public boolean hasCollection( String collectionName );
11 public boolean pingCollection( String collectionName );
12 public NzdlCollectionInfo getCollectionInfo( String collectionName );
13 public Set getFilterSet( String collectionName );
14 public Set getMetaTagSet( String collectionName );
15 public String getDocument( String collectionName, String documentID );
16 public Set getMetaData( String collectionName, String documentID, String metaTag );
17 public Map getMetaData( String collectionName, List documentIDs, String metaTag );
18 public void service( String collectionName, NzdlRequest request, NzdlResponse response );
19
20}
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Note: See TracBrowser for help on using the repository browser.