KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > rmi > interfaces > _RmiTableInformation


1 package com.daffodilwoods.rmi.interfaces;
2
3 import java.rmi.Remote JavaDoc;
4 import java.rmi.RemoteException JavaDoc;
5 import java.util.ArrayList JavaDoc;
6
7 import com.daffodilwoods.daffodildb.server.datadictionarysystem.information.*;
8 import com.daffodilwoods.database.resource.DException;
9 public interface _RmiTableInformation extends Remote JavaDoc {
10     ArrayList JavaDoc getAllColumns() throws RemoteException JavaDoc ;
11     ArrayList JavaDoc getAllIndexes() throws RemoteException JavaDoc ;
12     ArrayList JavaDoc getAllFullTextIndexes() throws RemoteException JavaDoc ;
13     ArrayList JavaDoc getAllTriggers() throws RemoteException JavaDoc ;
14     ArrayList JavaDoc getAllConstraints() throws RemoteException JavaDoc ;
15     String JavaDoc getQualifiedName()throws RemoteException JavaDoc ;
16     _ColumnsInformation getColumnInformation() throws RemoteException JavaDoc ;
17     _IndexInformation getIndexInformation() throws RemoteException JavaDoc ;
18     _FullTextIndexInformation getFullTextIndexInformation() throws RemoteException JavaDoc ;
19     _TriggerInformation getTriggerInformation() throws RemoteException JavaDoc ;
20     _ConstraintInformation getConstraintInformation() throws RemoteException JavaDoc ;
21
22
23     String JavaDoc getName()throws RemoteException JavaDoc;
24     String JavaDoc getCatalog()throws RemoteException JavaDoc;
25     String JavaDoc getSchema()throws RemoteException JavaDoc;
26     String JavaDoc getType()throws RemoteException JavaDoc;
27     String JavaDoc getRemarks()throws RemoteException JavaDoc;
28
29 }
30
Popular Tags