awips2/tests/integration/com/raytheon/uf/edex/datadelivery/bandwidth/IntegrationTestDbInit.java
Dustin Johnson 2635e05723 Issue #1453 Fix the handling of subscription active period dates.
Amend:
  Move tests project over that was missed while moving datadelivery code

Change-Id: I10611f8a4b6c2efe6af1813e5181fadc059e4f9a

Former-commit-id: 0e1397db6ca1a7a577d20507bc2c4daf823188fe
2013-01-08 12:44:29 -06:00

72 lines
1.8 KiB
Java

/**
* This software was developed and / or modified by Raytheon Company,
* pursuant to Contract DG133W-05-CQ-1067 with the US Government.
*
* U.S. EXPORT CONTROLLED TECHNICAL DATA
* This software product contains export-restricted data whose
* export/transfer/disclosure is restricted by U.S. law. Dissemination
* to non-U.S. persons whether in the United States or abroad requires
* an export license or other authorization.
*
* Contractor Name: Raytheon Company
* Contractor Address: 6825 Pine Street, Suite 340
* Mail Stop B8
* Omaha, NE 68106
* 402.291.0100
*
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for
* further licensing information.
**/
package com.raytheon.uf.edex.datadelivery.bandwidth;
import java.sql.SQLException;
import org.hibernate.cfg.AnnotationConfiguration;
import com.raytheon.uf.edex.datadelivery.bandwidth.dao.IBandwidthDbInit;
/**
* Implements database initialization task to do nothing.
*
* <pre>
*
* SOFTWARE HISTORY
*
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Oct 12, 2012 0726 djohnson Initial creation
*
* </pre>
*
* @author djohnson
* @version 1.0
*/
public class IntegrationTestDbInit implements IBandwidthDbInit {
/**
* {@inheritDoc}
*/
@Override
public void init() {
// Nothing required
}
/**
* {@inheritDoc}
*/
@Override
public void dropTables(AnnotationConfiguration aConfig) throws SQLException {
// Nothing required
}
/**
* {@inheritDoc}
*/
@Override
public void createTables(AnnotationConfiguration aConfig)
throws SQLException {
// Nothing required
}
}