Package com.btmatthews.maven.plugins.inmemdb

Examples of com.btmatthews.maven.plugins.inmemdb.Database


   *
   * @throws MojoFailureException
   *             If there was an error executing the goal.
   */
  public void execute() throws MojoFailureException {
    final Database database = getDatabase();
    if (database != null) {
      database.shutdown(this);
    }
  }
View Full Code Here


     *
     * @throws MojoFailureException
     *             If there was an error executing the goal.
     */
    public void execute() throws MojoFailureException {
        final Database database = getDatabase();
        if (database != null) {
            database.start(this);
            if (sources != null) {
                for (final File source : sources) {
                    database.load(this, source);
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.btmatthews.maven.plugins.inmemdb.Database

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.