All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xpertss.ds.As400DataSource Maven / Gradle / Ivy

Go to download

A modern high speed connection pool that supports multiple connection types.

There is a newer version: 2.6
Show newest version
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