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

pers.clare.hisql.store.SQLStore Maven / Gradle / Ivy

The newest version!
package pers.clare.hisql.store;


import pers.clare.hisql.function.FieldSetter;

import java.lang.reflect.Constructor;
import java.util.Map;

public class SQLStore {
    protected final Constructor constructor;
    protected final Map fieldSetMap;

    public SQLStore(Constructor constructor
            , Map fieldSetMap
    ) {
        this.constructor = constructor;
        this.fieldSetMap = fieldSetMap;
    }

    public Constructor getConstructor() {
        return constructor;
    }

    public Map getFieldSetMap() {
        return fieldSetMap;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy