1 22 23 package org.xquark.mapper.metadata; 24 25 26 import java.util.List ; 27 28 import org.xquark.mapper.dbms.TableInfo; 29 import org.xquark.xml.xdbc.XMLDBCException; 30 import org.xquark.xquery.metadata.resolver.MetadataAccess; 31 import org.xquark.xquery.metadata.resolver.SourceMetadata; 32 33 34 38 public interface _Repository extends MetadataAccess, SourceMetadata 39 { 40 41 42 43 47 public TableInfo getTableInfo(byte type); 48 49 55 public List getCollectionList() throws XMLDBCException; 56 57 63 public _Collection getCollection(String name) throws XMLDBCException; 64 65 68 public String getUserName(); 69 70 73 public String getURL(); 74 75 78 public String getName(); 79 80 83 public String getVersion(); 84 85 87 public void refresh() throws XMLDBCException; 88 89 } 90 | Popular Tags |