Revision 29406 branches/v2_0_0_prep/libraries/libFMap_daldb/src/org/gvsig/fmap/dal/store/jdbc/JDBCConnectionParameters.java

View differences:

JDBCConnectionParameters.java
33 33
import org.gvsig.fmap.dal.serverexplorer.db.DBConnectionParameter;
34 34

  
35 35
/**
36
 * Interface JDBC Store Parameters
37
 *
36 38
 * @author jmvivo
37 39
 *
38 40
 */
39 41
public interface JDBCConnectionParameters extends DBConnectionParameter {
42

  
43
	/**
44
	 * DynField name for <code>JDBC driver class name</code> parameter
45
	 */
40 46
	public static final String DYNFIELDNAME_JDBC_DRIVER_CLASS_NAME = "jdbcdriverclass";
47

  
48
	/**
49
	 * DynField name for <code>catalog</code> parameter
50
	 */
41 51
	public static final String DYNFIELDNAME_CATALOG = "catalog";
52

  
53
	/**
54
	 * DynField name for <code>schema</code> parameter
55
	 */
42 56
	public static final String DYNFIELDNAME_SCHEMA = "schema";
57

  
58
	/**
59
	 * DynField name for <code>JDBC connection URL</code> parameter
60
	 */
43 61
	public static final String DYNFIELDNAME_URL = "url";
44 62

  
63
	/**
64
	 * Return <code>JDBC driver class name</code> parameter
65
	 *
66
	 * @return
67
	 */
45 68
	public String getJDBCDriverClassName();
46 69

  
70
	/**
71
	 * Return <code>catalog</code> parameter
72
	 *
73
	 * @return
74
	 */
47 75
	public String getCatalog();
48 76

  
77
	/**
78
	 * Return <code>schema</code> parameter
79
	 *
80
	 * @return
81
	 */
49 82
	public String getSchema();
50 83

  
84
	/**
85
	 * Return <code>JDBC connection URL</code> parameter
86
	 * 
87
	 * @return
88
	 */
51 89
	public String getUrl();
52 90

  
53 91
}

Also available in: Unified diff