xpertss.ds.As400DataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xdbcp Show documentation
Show all versions of xdbcp Show documentation
A modern high speed connection pool that supports multiple connection types.
package xpertss.ds;
import com.ibm.as400.access.AS400;
import xpertss.ds.utils.Sets;
import java.util.Set;
/**
* An As400DataSource provides connections for remote procedure calls via
* IBM's AS400 PCML system.
*
* TODO Possibly add THREADED as a property
*
* @author cfloersch
*/
public interface As400DataSource extends DataSource {
/**
* An As400 data source requires a host name to connect to.
*/
public static final String HOSTNAME = "hostname";
static final Set VALID_PROPS = Sets.of(HOSTNAME, USERNAME, PASSWORD, BLACKOUT, CONNECT_TIMEOUT, READ_TIMEOUT);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy