com.jaxio.celerio.configuration.database.Metadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of celerio-engine Show documentation
Show all versions of celerio-engine Show documentation
Celerio Core Generation Engine
/*
* Copyright 2015 JAXIO http://www.jaxio.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jaxio.celerio.configuration.database;
import lombok.Setter;
import java.util.List;
import java.util.Map;
import static com.google.common.collect.Lists.newArrayList;
import static com.google.common.collect.Maps.newHashMap;
import static com.jaxio.celerio.configuration.Util.nonNull;
public class Metadata {
@Setter
private JdbcConnectivity jdbcConnectivity = new JdbcConnectivity();
@Setter
private DatabaseInfo databaseInfo = new DatabaseInfo();
private List tables = newArrayList();
// Ignored by JIBX thanks to src/main/config/customization.xml
private Map tablesByName = newHashMap();
public void setTables(List tables) {
this.tables = nonNull(tables);
tablesByName = newHashMap();
for (Table table : this.tables) {
putTableByName(table);
}
}
public JdbcConnectivity getJdbcConnectivity() {
return jdbcConnectivity;
}
public DatabaseInfo getDatabaseInfo() {
return databaseInfo;
}
public List getTables() {
return tables;
}
public Map getTablesByName() {
return tablesByName;
}
public void add(Table table) {
tables.add(table);
putTableByName(table);
}
public Table getTableByName(String tableName) {
if (tableName == null) {
return null;
}
return tablesByName.get(tableName.toUpperCase());
}
private void putTableByName(Table table) {
tablesByName.put(table.getName().toUpperCase(), table);
}
public void cleanMetadata() {
for (Table table : getTables()) {
if (table != null) {
table.cleanup();
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy