package com.test.dbc.client;
import java.sql.SQLException;
import java.util.ArrayList;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;


@RemoteServiceRelativePath("database")
public interface DataBaseConn extends RemoteService{
	ArrayList<String> getnames()  ;
}
