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

nyla.solutions.core.patterns.Connectable Maven / Gradle / Ivy

Go to download

This Java API provides support for application utilities (application configuration, data encryption, debugger, text processing, and more).

The newest version!
package nyla.solutions.core.patterns;

import nyla.solutions.core.exception.ConnectionException;

/**
 * Represents a connect DAO
 * @author Gregory Green
 *
 */
public interface Connectable extends Disposable
{
	/**
	 * Establish a connection
	 * @throws ConnectionException
	 */
	void connect()
	throws ConnectionException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy