Change-Id: I6f7f91542c324ac63214da5e231ab3f267b90f25 Former-commit-id:509418e05c
[formerlye1fb1488c9
] [formerly509418e05c
[formerlye1fb1488c9
] [formerly6cb4800e24
[formerly e1098a65c04a230590b8460b3da1d12b1046b9b5]]] Former-commit-id:6cb4800e24
Former-commit-id:d364dc9554
[formerly57be281cb4
] Former-commit-id:ae0ad86a89
63 lines
1.8 KiB
Java
63 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.common.comm;
|
|
|
|
import org.junit.Ignore;
|
|
|
|
/**
|
|
* Http constants
|
|
*
|
|
* <pre>
|
|
*
|
|
* SOFTWARE HISTORY
|
|
*
|
|
* Date Ticket# Engineer Description
|
|
* ------------ ---------- ----------- --------------------------
|
|
* Jun 11, 2013 1763 dhladky Initial creation
|
|
* Jun 17, 2013 2106 djohnson Use username/password from HttpTestConstants.
|
|
*
|
|
* </pre>
|
|
*
|
|
* @author dhladky
|
|
* @version 1.0
|
|
*/
|
|
@Ignore
|
|
public class HttpProxyTestConstants extends HttpTestConstants {
|
|
|
|
public static final int HTTPS_PORT = 8888;
|
|
|
|
public static final String REALM = "MADISOGC";
|
|
|
|
public static final String CONTEXT = "wfs";
|
|
|
|
public static final String HOST = "dev11";
|
|
|
|
public static final String REMOTE_HOST = "dev05";
|
|
|
|
public static final int HTTP_PORT = 8085;
|
|
|
|
public static final String HTTPS_URI = "https://" + HOST + ":" + HTTPS_PORT
|
|
+ "/wfs";
|
|
|
|
public static final String HTTP_URI = "http://" + REMOTE_HOST + ":" + HTTP_PORT
|
|
+ "/wfs";
|
|
|
|
public static final int PORT = HTTP_PORT;
|
|
}
|