Toggle navigation
Home
java.lang.String to alluxio.uri.Authority
No. of Instances - 9
No. of Commits - 1
No. of Projects - {'alluxio'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Update Class Instacne Creation
new java.net.URI(scheme,authority,AlluxioURI.normalizePath(path),query,null)
to
new java.net.URI(scheme,authority.toString().equals("") ? null : authority.toString(),AlluxioURI.normalizePath(path),query,null)
Add or Remove Method invocation
new java.net.URI(scheme,authority,AlluxioURI.normalizePath(path),query,null).normalize()
to
new java.net.URI(scheme,authority.toString().equals("") ? null : authority.toString(),AlluxioURI.normalizePath(path),query,null).normalize()
uri.getAuthority()
to
authority
URIUtils.hash(hashCode,mAuthority)
to
URIUtils.hash(hashCode,mAuthority.toString())
URI.Factory.create(scheme,authority,path,URIUtils.generateQueryString(queryMap))
to
URI.Factory.create(scheme,authority == null ? NoAuthority.INSTANCE : authority,path,null)