Statistics
| Revision:

root / trunk / org.gvsig.postgresql / org.gvsig.postgresql.provider / src / main / java / org / gvsig / postgresql / dal / PostgreSQLConnectionParameters.java @ 433

History | View | Annotate | Download (442 Bytes)

1 362 jjdelcerro
2
package org.gvsig.postgresql.dal;
3
4
import org.gvsig.fmap.dal.resource.db.DBParameters;
5
import org.gvsig.fmap.dal.store.jdbc.JDBCConnectionParameters;
6
7
public interface PostgreSQLConnectionParameters extends JDBCConnectionParameters, DBParameters {
8
        public static final String USESSL_PARAMTER_NAME = "UseSSL";
9 433 jjdelcerro
        public static final String MAXIDLE_PARAMTER_NAME = "maxIdle";
10 362 jjdelcerro
11 433 jjdelcerro
        public boolean getUseSSL();
12
13
    public int getMaxIdle();
14 362 jjdelcerro
}