org.pentaho.platform.dataaccess.datasource.wizard.service.gwt
Interface IGwtConnectionServiceAsync
public interface IGwtConnectionServiceAsync
This is the GWT Asynchronous implementation of the IConnectionService API
getConnections
void getConnections(com.google.gwt.user.client.rpc.AsyncCallback<List<IConnection>> callback)
getConnectionByName
void getConnectionByName(String name,
com.google.gwt.user.client.rpc.AsyncCallback<IConnection> callback)
addConnection
void addConnection(IConnection connection,
com.google.gwt.user.client.rpc.AsyncCallback<Boolean> callback)
updateConnection
void updateConnection(IConnection connection,
com.google.gwt.user.client.rpc.AsyncCallback<Boolean> callback)
deleteConnection
void deleteConnection(IConnection connection,
com.google.gwt.user.client.rpc.AsyncCallback<Boolean> callback)
deleteConnection
void deleteConnection(String name,
com.google.gwt.user.client.rpc.AsyncCallback<Boolean> callback)
testConnection
void testConnection(IConnection connection,
com.google.gwt.user.client.rpc.AsyncCallback<Boolean> callback)
convertToConnection
void convertToConnection(IDatabaseConnection connection,
com.google.gwt.user.client.rpc.AsyncCallback<IConnection> callback)
convertFromConnection
void convertFromConnection(IConnection connection,
com.google.gwt.user.client.rpc.AsyncCallback<IDatabaseConnection> callback)