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

applauncher.support.NodeIdentifier Maven / Gradle / Ivy

package applauncher.support;

import java.net.InetAddress;

public final class NodeIdentifier {
    public final String identifier;

    public NodeIdentifier() throws Exception {
        this("Unknown");
    }

    public NodeIdentifier(String serverName)throws Exception  {
        this.identifier = serverName + "::(" + localHost() + ")";
    }

    static String localHost() throws Exception {
        return InetAddress.getLocalHost().getHostName();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy