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

net.java.ao.schema.info.EntityInfoResolverFactory Maven / Gradle / Ivy

Go to download

This is the full Active Objects library, if you don't know which one to use, you probably want this one.

The newest version!
package net.java.ao.schema.info;

import net.java.ao.schema.NameConverters;
import net.java.ao.types.TypeManager;

/**
 * A factory capable of currying the required managers for a {@link EntityInfoResolver} to be created
 *
 * @since 0.21
 */
public interface EntityInfoResolverFactory {

    /**
     * @param nameConverters the name converters
     * @param typeManager    the database type manager
     * @return a new {@link EntityInfoResolver}
     */
    EntityInfoResolver create(NameConverters nameConverters, TypeManager typeManager);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy