Statistics
| Revision:

root / trunk / org.gvsig.postgresql / org.gvsig.postgresql.provider / src / main / java / org / gvsig / postgresql / dal / FakePostgreSQLConnectionParameters.java @ 831

History | View | Annotate | Download (674 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.postgresql.dal;
7

    
8
import org.gvsig.fmap.dal.store.jdbc2.spi.FakeConnectionParameters;
9

    
10
/**
11
 *
12
 * @author fdiaz
13
 */
14
public class FakePostgreSQLConnectionParameters extends FakeConnectionParameters implements PostgreSQLConnectionParameters {
15

    
16
    @Override
17
    public boolean getUseSSL() {
18
        return false;
19
    }
20

    
21
    @Override
22
    public int getMaxIdle() {
23
        return 8;
24
    }
25

    
26
    @Override
27
    public int getNetworkTimeout() {
28
        return 30000;
29
    }
30
    
31
}