Package org.openengsb.core.edbi.jdbc.names

Examples of org.openengsb.core.edbi.jdbc.names.SQLIndexFieldNameTranslator


    private HeadTableFactory tableFactory;

    public HeadTableEngine(DataSource dataSource, TypeMap typeMap) {
        this(dataSource, typeMap, new PrependingNameTranslator<>(new SQLIndexNameTranslator(), TABLE_PREFIX),
            new SQLIndexFieldNameTranslator());
    }
View Full Code Here


    public HistoryTableEngine(DataSource dataSource, TypeMap typeMap) {
        this(dataSource, typeMap, new PrependingNameTranslator<>(new SQLIndexNameTranslator(), TABLE_PREFIX));
    }

    public HistoryTableEngine(DataSource dataSource, TypeMap typeMap, NameTranslator<Index<?>> indexNameTranslator) {
        this(dataSource, typeMap, indexNameTranslator, new SQLIndexFieldNameTranslator());
    }
View Full Code Here

TOP

Related Classes of org.openengsb.core.edbi.jdbc.names.SQLIndexFieldNameTranslator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.