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

org.xblackcat.sjpu.storage.IAHFactory 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;

/**
 * 15.11.13 14:17
 *
 * @author xBlackCat
 */
public interface IAHFactory {
     I get(Class clazz);

     T get(Class functionalAH, String sql);

     T startBatch(Class batched);

//     T startBatch(Class functionalAH, String sql);
}