blob: 5cf3335e670260763da21532efe046515de25b09 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.core.client;
import java.net.InetAddress;
import java.net.UnknownHostException;
import org.eclipse.core.runtime.Preferences;
import org.eclipse.osee.framework.jdk.core.util.Network;
import org.eclipse.osee.framework.jdk.core.util.Strings;
/**
* @author Roberto E. Escobar
*/
public class CorePreferences {
private CorePreferences() {
}
public static final String INETADDRESS_KEY = "org.eclipse.osee.framework.core.client.preferences.InetAddressDefault";
public static InetAddress getDefaultInetAddress() throws UnknownHostException {
Preferences prefStore = CoreClientActivator.getInstance().getPluginPreferences();
String inetaddress = prefStore.getString(CorePreferences.INETADDRESS_KEY);
if (Strings.isValid(inetaddress)) {
return InetAddress.getByName(inetaddress);
}
return Network.getValidIP();
}
}