- 论坛徽章:
- 0
|
private AbstractFlightManager afm;
public RemoteFlightManager(final String dbname)
throws FlightException, RemoteException {
afm = new AbstractFlightManager(dbname) {
};
}
public RemoteFlightManager(final String dbname, final FieldInfo[] fields)
throws FlightException, RemoteException {
afm = new AbstractFlightManager(dbname, fields) {
};
}
public final FieldInfo[] getFieldInfo() throws RemoteException {
return afm.getFieldInfo();
}
public final int getRecordCount() throws RemoteException {
return afm.getRecordCount();
}
public final DataInfo getRecord(final int recNum)
throws FlightException, RemoteException {
return afm.getRecord(recNum);
}
public final DataInfo find(final String toMatch)
throws FlightException, RemoteException {
return afm.find(toMatch);
}
public final void add(final String[] newData)
throws FlightException, RemoteException {
afm.add(newData);
}
public final void modify(final DataInfo newData)
throws FlightException, RemoteException {
afm.modify(newData);
}
public final void delete(final DataInfo toDelete)
throws FlightException, RemoteException {
afm.delete(toDelete);
}
public final void close() throws RemoteException {
afm.close();
}
public final String[] getAllUniqueValues(final int columnNum)
throws FlightException, RemoteException {
return afm.getAllUniqueValues(columnNum);
}
public final DataInfo[] criteriaFind(final String criteria)
throws FlightException, RemoteException {
return afm.criteriaFind(criteria);
}
public final void lock(final int record)
throws FlightException, RemoteException {
afm.lock(record);
}
public final void unlock(final int record) throws RemoteException {
afm.unlock(record);
}
public final String[] getColumnNames() throws RemoteException {
return afm.getColumnNames();
}
public final String[][] search(final String criteria)
throws FlightException, RemoteException {
return afm.search(criteria);
}
public final void book(final String flightNum, final int seatsNum)
throws FlightException, RemoteException {
afm.book(flightNum, seatsNum);
}
谢谢大家了  |
|