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

org.tiogasolutions.push.kernel.KernelUtils Maven / Gradle / Ivy

package org.tiogasolutions.push.kernel;

import javax.ws.rs.core.UriInfo;

public class KernelUtils {

  public static String getContextRoot(UriInfo uriInfo) {
    if (uriInfo == null) return "/";
    String path = uriInfo.getBaseUri().toASCIIString();
    path = path.substring(0, path.length()-1);
    return path.trim();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy