Class URIUtils

    • Method Detail

      • getBaseURI

        public static URI getBaseURI​(URI uri)
        Gets the base part (schema, host, port and path) of the specified URI.
        Parameters:
        uri - The URI. May be null.
        Returns:
        The base part of the URI, null if the original URI is null or doesn't specify a protocol.
      • prependPath

        public static URI prependPath​(URI uri,
                                      String pathComponent)
        Prepends the specified path component to a URI. The prepended and any existing path component are always joined with a single slash ('/') between them
        Parameters:
        uri - The URI, null if not specified.
        pathComponent - The path component to prepend, null if not specified.
        Returns:
        The URI with prepended path component, null if the original URI wasn't specified.
      • prependLeadingSlashIfMissing

        public static String prependLeadingSlashIfMissing​(String s)
        Prepends a leading slash `/` if missing to the specified string.
        Parameters:
        s - The string, null if not specified.
        Returns:
        The string with leading slash, null if not originally specified.
      • stripLeadingSlashIfPresent

        public static String stripLeadingSlashIfPresent​(String s)
        Strips any leading slashes '/' if present from the specified string.
        Parameters:
        s - The string, null if not specified.
        Returns:
        The string with no leading slash, null if not originally specified.
      • joinPathComponents

        public static String joinPathComponents​(String c1,
                                                String c2)
        Joins two path components. If the two path components are not null or empty they are joined so that there is only a single slash ('/') between them.
        Parameters:
        c1 - The first path component, null if not specified.
        c2 - The second path component, null if not specified.
        Returns:
        The joined path components, null if both are not specified, or if one is null the other unmodified.
      • stripQueryString

        public static URI stripQueryString​(URI uri)
        Strips the query string from the specified URI.
        Parameters:
        uri - The URI. May be null.'
        Returns:
        The URI with stripped query string, null if the original URI is null or doesn't specify a protocol.
      • removeTrailingSlash

        public static URI removeTrailingSlash​(URI uri)
        Removes the trailing slash ("/") from the specified URI, if present.
        Parameters:
        uri - The URI. May be null.
        Returns:
        The URI with no trailing slash, null if the original URI is null.