Package org.apache.solr.common.util
Class URLUtil
- java.lang.Object
-
- org.apache.solr.common.util.URLUtil
-
public class URLUtil extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static Pattern
URL_PREFIX
-
Constructor Summary
Constructors Constructor Description URLUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
buildCoreUrl(String baseUrl, String coreName)
Create a core URL (e.g.static String
extractBaseUrl(String coreUrl)
static String
extractCoreFromCoreUrl(String coreUrl)
static String
getScheme(String url)
static boolean
hasScheme(String url)
static String
removeScheme(String url)
-
-
-
Field Detail
-
URL_PREFIX
public static final Pattern URL_PREFIX
-
-
Method Detail
-
hasScheme
public static boolean hasScheme(String url)
-
extractBaseUrl
public static String extractBaseUrl(String coreUrl)
- Parameters:
coreUrl
- a URL pointing to a specific "core" or collection (i.e. that adheres loosely to the form "scheme://host:port/solr/coreName")- Returns:
- a URL pointing to the Solr node's root path
-
buildCoreUrl
public static String buildCoreUrl(String baseUrl, String coreName)
Create a core URL (e.g. "http://localhost:8983/solr/myCore") from its individual components- Parameters:
baseUrl
- a Solr "base URL" (e.g. "http://localhost:8983/solr/")coreName
- the name of a Solr core or collection (with no leading or trailing slashes)
-
-