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

org.xblackcat.sjpu.skel.IFactory 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.skel;

import java.util.concurrent.locks.ReadWriteLock;

/**
 * 04.04.2014 13:09
 *
 * @author xBlackCat
 */
public interface IFactory {
     I get(Class clazz, Object... args);

    ReadWriteLock getLock();

    void purge();
}