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

org.xblackcat.sjpu.storage.impl.AnAH Maven / Gradle / Ivy

Go to download

Service for generating DB access logic in simple way via interfaces and annotations

There is a newer version: 2.0
Show newest version
package org.xblackcat.sjpu.storage.impl;

import org.xblackcat.sjpu.storage.IAH;
import org.xblackcat.sjpu.storage.connection.IConnectionFactory;

/**
 * @author xBlackCat Date: 27.07.11
 */
public class AnAH implements IAH {
    protected final IConnectionFactory factory;

    protected AnAH(IConnectionFactory factory) {
        if (factory == null) {
            throw new NullPointerException("Helper can not be null.");
        }
        this.factory = factory;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy