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

com.cosmicpush.pub.internal.PushUtils Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package com.cosmicpush.pub.internal;

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

public class PushUtils {

  private PushUtils() {
  }

  public static InetAddress getLocalHost() {
    try {
      return InetAddress.getLocalHost();
    } catch (UnknownHostException e) {
      throw new RuntimeException("Exception getting InetAddress for localhost.", e);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy