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

cz.mmsparams.api.utils.UrlUtils Maven / Gradle / Ivy

The newest version!
package cz.mmsparams.api.utils;

public class UrlUtils
{
    private UrlUtils()
    {
    }

    public static String getServerSocketUrl(String address)
    {
        return "ws://" + address + "/appsocket";
    }

    public static String getServerSocketUrl(String address, String port)
    {
        return "ws://" + address + ":" + port + "/appsocket";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy