blob: bc429c96ad38f8505e36c704ef37657796bfd1a0 [file] [log] [blame]
/*
* Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package util;
import com.sun.enterprise.util.net.NetUtils;
/**
*
*
*
*
*/
public class Util {
private static final String DAS_PORT;
private static final String DAS_HOST;
private static final String ADMIN_USER;
private static final String ADMIN_PASSWD;
private static final String INSTALL_TYPE;
private static boolean IS_EE;
static {
DAS_HOST = System.getProperty("ADMIN_HOST", "localhost");
DAS_PORT = System.getProperty("ADMIN_PORT", "4849");
ADMIN_USER = System.getProperty("ADMIN_USER", "admin");
ADMIN_PASSWD = System.getProperty("ADMIN_PASSWORD", "adminadmin");
try {
IS_EE = NetUtils.isSecurePort(DAS_HOST, Integer.parseInt(DAS_PORT));
} catch(Exception ex) {
//default make it PE. Squelch it, and let the connection handle this
IS_EE=false;
}
if (IS_EE)
INSTALL_TYPE = "ee";
else
INSTALL_TYPE = "pe";
}
public static String getAdminHost() {
return DAS_HOST;
}
public static String getAdminPort() {
return DAS_PORT;
}
public static String getAdminUser() {
return ADMIN_USER;
}
public static String getAdminPassword() {
return ADMIN_PASSWD;
}
public static String getInstallType() {
return INSTALL_TYPE;
}
}