awips2/tests/manual/com/raytheon/uf/common/comm/TestProxyHttpsConfiguration.java
Dustin Johnson 86d55a558e Issue #2106 Correct connection password logic, fix test code
Change-Id: I6f7f91542c324ac63214da5e231ab3f267b90f25

Former-commit-id: 509418e05c [formerly e1fb1488c9] [formerly 509418e05c [formerly e1fb1488c9] [formerly 6cb4800e24 [formerly e1098a65c04a230590b8460b3da1d12b1046b9b5]]]
Former-commit-id: 6cb4800e24
Former-commit-id: d364dc9554 [formerly 57be281cb4]
Former-commit-id: ae0ad86a89
2013-06-17 09:24:07 -05:00

63 lines
1.6 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.common.comm;
import org.junit.Ignore;
/**
* Test implementation.
*
* <pre>
*
* SOFTWARE HISTORY
*
* Date Ticket# Engineer Description
* ------------ ---------- ----------- --------------------------
* Apr 9, 2013 mpduff Initial creation
*
* </pre>
*
* @author mpduff
* @version 1.0
*/
@Ignore
public class TestProxyHttpsConfiguration implements IHttpsConfiguration {
/*
* (non-Javadoc)
*
* @see com.raytheon.uf.common.comm.IHttpsConfiguration#getHttpsPort()
*/
@Override
public int getHttpsPort() {
return HttpProxyTestConstants.HTTPS_PORT;
}
/*
* (non-Javadoc)
*
* @see com.raytheon.uf.common.comm.IHttpsConfiguration#getHttpPort()
*/
@Override
public int getHttpPort() {
return HttpProxyTestConstants.HTTP_PORT;
}
}