org.xblackcat.sjpu.storage.impl.AnAH Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sjpu-dbah Show documentation
Show all versions of sjpu-dbah Show documentation
Service for generating DB access logic in simple way via interfaces and annotations
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