Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/App.java @ 14:0d16d1bb2df0
Initial checkin of artigact persistents back by database.
artifacts/trunk@29 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Mon, 07 Sep 2009 08:41:05 +0000 |
parents | 0d6badf6af42 |
children | 1259d192e3c3 |
line wrap: on
line source
package de.intevation.artifactdatabase; /** * Starting point of the artifact database. * * @author Sascha L. Teichmann (sascha.teichmann@intevation.de) */ public class App { public static void main(String[] args) { FactoryBootstrap bootstrap = new FactoryBootstrap(); bootstrap.boot(); Backend backend = new Backend(); ArtifactDatabaseImpl db = new ArtifactDatabaseImpl( bootstrap, backend); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: