All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lumongo.server.connection.ConnectionHelper Maven / Gradle / Ivy

The newest version!
package org.lumongo.server.connection;

import java.net.InetAddress;
import java.net.UnknownHostException;

public class ConnectionHelper {
	private final static String myHostName;

	static {
		
		try {
			myHostName = InetAddress.getLocalHost().getCanonicalHostName();
		}
		catch (UnknownHostException e) {
			throw new RuntimeException(e);
		}
		
	}
	
	public static String getHostName() {
		return myHostName;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy