PoolClass.java [src/java/m/example/jdbc] Revision:   Date:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package m.example.jdbc;

import csip.annotations.Resource;
import static csip.annotations.ResourceType.JDBC;
import static m.example.jdbc.PoolClass.*;

@Resource(file = "jdbc:postgresql://localhost/od?user=od&password=od",
        env = {"maxWait=10000", "jmxEnabled=false"}, id = P_ID, type = JDBC)
public class PoolClass {
    
    public static final String P_ID = "patch";

}