Change-Id: I4b7ca6e23993dbecad284e8dc434918bc5f55678 Former-commit-id:cdd05c4d92
[formerly8ed8cdd9b7
] [formerly83a015b556
] [formerlycdd05c4d92
[formerly8ed8cdd9b7
] [formerly83a015b556
] [formerly87829b4cf1
[formerly83a015b556
[formerly 4ed0e3f954e5abf420d9e9c2dc4d197c1613f046]]]] Former-commit-id:87829b4cf1
Former-commit-id:7022e8de41
[formerlydc91603661
] [formerly cc8c154ff5478b3f4a197a19a5475075ea1d0fb7 [formerlyb6c7f2d6c6
]] Former-commit-id: b018d82a54465bc023108fc7dd6770c438e4b5cc [formerly41d7855390
] Former-commit-id:ce5abf7a4c
51 lines
1.4 KiB
Java
51 lines
1.4 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;
|
|
|
|
/**
|
|
* Implements database initialization task to do nothing.
|
|
*
|
|
* <pre>
|
|
*
|
|
* SOFTWARE HISTORY
|
|
*
|
|
* Date Ticket# Engineer Description
|
|
* ------------ ---------- ----------- --------------------------
|
|
* Oct 12, 2012 0726 djohnson Initial creation
|
|
* Apr 30, 2013 1960 djohnson Remove unnecessary methods.
|
|
*
|
|
* </pre>
|
|
*
|
|
* @author djohnson
|
|
* @version 1.0
|
|
*/
|
|
|
|
public class IntegrationTestDbInit implements IBandwidthDbInit {
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
@Override
|
|
public void init() {
|
|
// Nothing required
|
|
}
|
|
}
|