View Javadoc

1   package migratool.datasources.superDataSourceFactory;
2   
3   import migratool.datasources.AbstractDestinationDataSource;
4   import migratool.datasources.AbstractOriginDataSource;
5   import migratool.datasources.DataSourceException;
6   
7   
8   /**
9    * 
10   * MIGRATOOL Program to migrate spatial databsets.
11   * Copyright (C) 2007 Fábio Luiz Leite Júnior
12   * Universidade Federal de Campina Grande
13   * contact: fabioleite@gmail.com
14   *
15   * This program is free software; you can redistribute it and/or
16   * modify it under the terms of the GNU General Public License
17   * as published by the Free Software Foundation; either version 2
18   * of the License, or (at your option) any later version.
19   *
20   * This program is distributed in the hope that it will be useful,
21   * but WITHOUT ANY WARRANTY; without even the implied warranty of
22   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23   * GNU General Public License for more details.
24   *
25   * You should have received a copy of the GNU General Public License
26   * along with this program; if not, write to the Free Software
27   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
28   *
29   * @author fabio
30   *
31   * Interface para a fábirca de data sources
32   */
33  
34  public interface DataSourceFactoryIF {
35  	
36  	public AbstractOriginDataSource getOriginDataSource();
37  	
38  	public AbstractDestinationDataSource getDestinationDataSource() throws DataSourceException;
39  
40  }