Class URIish
java.lang.Object
org.eclipse.jgit.transport.URIish
- All Implemented Interfaces:
Serializable
This URI like construct used for referencing Git archives over the net, as
well as locally stored archives. It is similar to RFC 2396 URI's, but also
support SCP and the malformed file://<path> syntax (as opposed to the correct
file:<path> syntax.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleangetHost()Get host name part.Get the "humanish" part of the path.getPass()Get password requested for transfergetPath()Get path name componentintgetPort()Get port number requested for transfer or -1 if not explicitGet path name componentGet protocol namegetUser()Get user name requested for transferinthashCode()booleanisRemote()Whether this URI references a repository on another system.Return a new URI matching this one, but with a different host.Return a new URI matching this one, but with a different password.Return a new URI matching this one, but with a different path.setPort(int n) Return a new URI matching this one, but with a different port.setRawPath(String n) Return a new URI matching this one, but with a different (raw) path.Return a new URI matching this one, but with a different scheme.Return a new URI matching this one, but with a different user.Get the URI as an ASCII string.Convert the URI including password, formatted with only ASCII characters such that it will be valid for use over the network.Obtain the string form of the URI, with the password included.toString()
-
Constructor Details
-
URIish
Parse and construct anURIishfrom a string- Parameters:
s- aStringobject.- Throws:
URISyntaxException
-
URIish
Construct a URIish from a standard URL.- Parameters:
u- the source URL to convert from.
-
URIish
public URIish()Create an empty, non-configured URI.
-
-
Method Details
-
isRemote
public boolean isRemote()Whether this URI references a repository on another system.- Returns:
- true if this URI references a repository on another system.
-
getHost
-
setHost
-
getScheme
-
setScheme
-
getPath
-
getRawPath
-
setPath
-
setRawPath
Return a new URI matching this one, but with a different (raw) path.- Parameters:
n- the new value for path.- Returns:
- a new URI with the updated value.
- Throws:
URISyntaxException
-
getUser
Get user name requested for transfer- Returns:
- user name requested for transfer or null
-
setUser
-
getPass
Get password requested for transfer- Returns:
- password requested for transfer or null
-
setPass
-
getPort
public int getPort()Get port number requested for transfer or -1 if not explicit- Returns:
- port number requested for transfer or -1 if not explicit
-
setPort
Return a new URI matching this one, but with a different port.- Parameters:
n- the new value for port.- Returns:
- a new URI with the updated value.
-
hashCode
-
equals
-
toPrivateString
Obtain the string form of the URI, with the password included.- Returns:
- the URI, including its password field, if any.
-
toString
-
toASCIIString
Get the URI as an ASCII string.- Returns:
- the URI as an ASCII string. Password is not included.
-
toPrivateASCIIString
Convert the URI including password, formatted with only ASCII characters such that it will be valid for use over the network.- Returns:
- the URI including password, formatted with only ASCII characters such that it will be valid for use over the network.
-
getHumanishName
Get the "humanish" part of the path. Some examples of a 'humanish' part for a full path:Path Humanish part /path/to/repo.gitrepo/path/to/repo.git//path/to/repo/.git/path/to/repo/localhostssh://localhost//path//toan empty string - Returns:
- the "humanish" part of the path. May be an empty string. Never
null. - Throws:
IllegalArgumentException- if it's impossible to determine a humanish part, or path isnullor empty- See Also:
-