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

com.dream.system.mapper.MapperFactory Maven / Gradle / Ivy

The newest version!
package com.dream.system.mapper;

import com.dream.system.config.Configuration;
import com.dream.system.config.MethodInfo;
import com.dream.system.core.session.Session;

import java.util.Collection;


public interface MapperFactory {

    void addMethodInfo(MethodInfo methodInfo);

    MethodInfo getMethodInfo(String id);

    boolean addMapper(Configuration configuration, Class type);

     T getMapper(Class type, Session session);

    Collection getMapperTypeList();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy