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

com.agimatec.dbhistory.HistoryGeneratorTool Maven / Gradle / Ivy

There is a newer version: 2.5.27
Show newest version
package com.agimatec.dbhistory;

import com.agimatec.sql.meta.persistence.XStreamPersistencer;
import com.agimatec.commons.generator.GeneratorTool;

import java.io.File;
import java.io.IOException;

/**
 * Description: Tool to generate files with freemarker for a catalogdescription
 * and a history configuration.
* User: roman.stumm
* Date: 27.04.2007
* Time: 18:08:23
* Copyright: Agimatec GmbH */ public class HistoryGeneratorTool extends GeneratorTool { private HistSchemaConfig config; protected HistSchemaConfig getConfig() { return config; } protected void readConfig(File historyConfigFile) throws IOException, ClassNotFoundException { config = (HistSchemaConfig) new XStreamPersistencer().load(historyConfigFile); } public static void main(String[] args) throws Exception { HistoryGeneratorTool tool = new HistoryGeneratorTool(); tool.runMain(args, new HistoryGeneratorSettings()); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy