![JAR search and dependency download from the Maven repository](/logo.png)
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 - 2025 Weber Informatics LLC | Privacy Policy