awips2/tests/integration/com/raytheon/uf/edex/datadelivery/bandwidth/IntegrationTestBandwidthInitializer.java
Dustin Johnson 318afbcd20 Issue #1906 Remove new registry plugin from datadelivery feature
Change-Id: I3ca4e0335af4b7d0de195f84fe4b3ae9c6fb8598

Former-commit-id: 33e650fa62 [formerly e44d3a8715] [formerly c8241840c5] [formerly 33e650fa62 [formerly e44d3a8715] [formerly c8241840c5] [formerly 977702e876 [formerly c8241840c5 [formerly 71b4bb07870f5490d89a1fe657429444c54a2689]]]]
Former-commit-id: 977702e876
Former-commit-id: f62c676204 [formerly ee0572026a] [formerly 8f6f2752a97faad2cc1abe1217e10c837c560006 [formerly 8170693941]]
Former-commit-id: 21eccbdc435b0685d83b3d9b97371ed96a747b6f [formerly 8095deee57]
Former-commit-id: ff9f489fea
2013-04-16 10:36:56 -05:00

62 lines
1.7 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 com.raytheon.uf.edex.datadelivery.bandwidth.dao.IBandwidthDbInit;
import com.raytheon.uf.edex.datadelivery.bandwidth.interfaces.BandwidthInitializer;
/**
* Integration test {@link BandwidthInitializer}.
*
* <pre>
*
* SOFTWARE HISTORY
*
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Oct 12, 2012 0726 djohnson Initial creation
* Apr 16, 2013 1906 djohnson Implements RegistryInitializedListener.
*
* </pre>
*
* @author djohnson
* @version 1.0
*/
public class IntegrationTestBandwidthInitializer implements
BandwidthInitializer {
/**
* {@inheritDoc}
*/
@Override
public boolean init(IBandwidthManager instance, IBandwidthDbInit dbInit) {
return true;
}
/**
* {@inheritDoc}
*/
@Override
public void executeAfterRegistryInit() {
// Nothing to do
}
}