Method and Description |
---|
org.artifactory.security.Security.canAdmin(RepoPath)
Use
#canManage() instead |
org.artifactory.security.Security.currentUsername()
Use
Security.getCurrentUsername() instead |
org.artifactory.resource.RepoResourceInfo.getChecksums()
Should use the container getter
|
org.artifactory.security.Security.getEscapedEncryptedPassword()
No need to escape a base58 password
|
org.artifactory.request.HttpHeadersContainter.getHeader(String)
replaced by org.artifactory.request.HasHttpHeaders#getHeaderValues(java.lang.String)
Backward compatible map getheader (return first)
Unless we use HeadersMultimap which use natural reversed order which is the last - for having map like order last overrides current)
|
org.artifactory.request.HttpHeadersContainter.getHeaders()
replaced by using that object and later iterate org.artifactory.request.HasHttpHeaders#getHeadersKeys() and for each use org.artifactory.request.HasHttpHeaders#getHeaderValues(java.lang.String)
used only for testing - HeadersMultimap class - in transition from single key to multi key headers.
|
org.artifactory.request.HttpHeadersContainter.getHeaders(String)
replaced by org.artifactory.request.HasHttpHeaders#getHeaderValues(java.lang.String)
The method may be broken in internal request. Old implementation ignored the parameter RTFACT-17547
|
org.artifactory.repo.Repositories.getStringContent(FileInfo) |
org.artifactory.repo.Repositories.isLcoalRepoPathHandled(RepoPath) |
org.artifactory.repo.Repositories.isLocalRepoPathAccepted(RepoPath) |
org.artifactory.repo.Repositories.undeploy(RepoPath)
Use
Repositories.deleteAtomic(RepoPath) or Repositories.delete(RepoPath) instead |
Copyright © 2019. All rights reserved.