Examples of PojoDataContext


Examples of org.apache.metamodel.pojo.PojoDataContext

            tableDataProviders[i] = tableDataProvider;
        }
       
        String databaseName = params.getDatabaseName();
        if (databaseName != null && !databaseName.isEmpty()) {
            return new PojoDataContext(databaseName, tableDataProviders);
        }
        return new PojoDataContext(Arrays.asList(tableDataProviders));
    }
View Full Code Here

Examples of org.apache.metamodel.pojo.PojoDataContext

public class MockDataContextFactoryBeanDelegate implements DataContextFactoryBeanDelegate {

    @Override
    public DataContext createDataContext(DataContextFactoryParameters bean) {
        String username = bean.getUsername();
        return new PojoDataContext(username, new ArrayList<TableDataProvider<?>>());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.