Uses of Interface
org.artifactory.repo.RepoPath
-
Packages that use RepoPath Package Description org.artifactory.fs org.artifactory.repo org.artifactory.request org.artifactory.resource org.artifactory.search org.artifactory.security -
-
Uses of RepoPath in org.artifactory.fs
Methods in org.artifactory.fs that return RepoPath Modifier and Type Method Description RepoPath
ItemInfo. getRepoPath()
-
Uses of RepoPath in org.artifactory.repo
Subinterfaces of RepoPath in org.artifactory.repo Modifier and Type Interface Description interface
RemoteRepoPath
Represents RemoteRepoPath by obligating to RepoPath contract and adding remote Origin in to the contextMethods in org.artifactory.repo that return RepoPath Modifier and Type Method Description static RepoPath
RepoPathFactory. create(java.lang.String rpp)
Constructs a RepoPath from a path containing both repo key and the relative path in the repo.static RepoPath
RepoPathFactory. create(java.lang.String repoKey, java.lang.String path)
Constructs a RepoPath from the input repo key and optional path.RepoPath
RemoteRepoPath. getActualRepoPath()
RepoPath
Repositories. getArtifactRepoPath(FileLayoutInfo layoutInfo, java.lang.String repoKey)
Returns actual repository path for layout information (group, artifact, version, etc.) of an artifact as it is built according to the layout of the repository.RepoPath
Repositories. getDescriptorRepoPath(FileLayoutInfo layoutInfo, java.lang.String repoKey)
Returns actual repository path for layout information (group, artifact, version, etc.) of a descriptor as it is built according to the layout of the repository.RepoPath
RepoPath. getParent()
Methods in org.artifactory.repo with parameters of type RepoPath Modifier and Type Method Description StatusHolder
Repositories. copy(RepoPath source, RepoPath target)
Copies the source repoPath to the targetRepoPathStatusHolder
Repositories. copyAtomic(RepoPath source, RepoPath target)
Copies the source repoPath to the targetRepoPath , Directories are copied recursively in a single transaction, which might be resource intensive when copying very large directories.StatusHolder
Repositories. delete(RepoPath repoPath)
Deletes the specified repoPath.StatusHolder
Repositories. deleteAtomic(RepoPath repoPath)
Deletes the specified repoPath.void
Repositories. deleteProperty(RepoPath repoPath, java.lang.String propertyName)
Deletes the property from the item.StatusHolder
Repositories. deploy(RepoPath repoPath, java.io.InputStream inputStream)
Deploy an artifactboolean
Repositories. exists(RepoPath repoPath)
long
Repositories. getArtifactsCount(RepoPath repoPath)
Returns the total number of file artifacts under the provided directory repo path.long
Repositories. getArtifactsSize(RepoPath repoPath)
Returns the total storage size of the file artifacts under the given directory repo path.java.util.List<ItemInfo>
Repositories. getChildren(RepoPath repoPath)
ResourceStreamHandle
Repositories. getContent(RepoPath repoPath)
Get a stream handle for the file contentFileInfo
Repositories. getFileInfo(RepoPath repoPath)
ItemInfo
Repositories. getItemInfo(RepoPath repoPath)
FileLayoutInfo
Repositories. getLayoutInfo(RepoPath repoPath)
Returns module related information (group, artifact, version, etc.) for given file, as it was extracted according to the layout of the repository the file is part of.Properties
Repositories. getProperties(RepoPath repoPath)
java.lang.String
Repositories. getProperty(RepoPath repoPath, java.lang.String propertyName)
java.util.Set<java.lang.String>
Repositories. getPropertyValues(RepoPath repoPath, java.lang.String propertyName)
StatsInfo
Repositories. getStats(RepoPath repoPath)
Returns statistics for therepoPath
, which include downloads count, last download time and last downloader's name.java.lang.String
Repositories. getStringContent(RepoPath repoPath)
Get the content of a file as a stringboolean
Repositories. hasProperty(RepoPath repoPath, java.lang.String propertyName)
boolean
Repositories. isLcoalRepoPathHandled(RepoPath repoPath)
Deprecated.boolean
Repositories. isLocalRepoPathAccepted(RepoPath repoPath)
Deprecated.boolean
Repositories. isRepoPathAccepted(RepoPath repoPath)
Checks if the specified repoPath is accepted by the include/exclude rules of the repoPath's repository.boolean
Repositories. isRepoPathHandled(RepoPath repoPath)
Checks if the specified repoPath is handled by the snapshot(integration)/release policy of the repoPath's repository.StatusHolder
Repositories. move(RepoPath source, RepoPath target)
Moves the source repoPath to the targetRepoPathStatusHolder
Repositories. moveAtomic(RepoPath source, RepoPath target)
Moves the source repoPath to the targetRepoPath , Directories are moved recursively in a single transaction, which might be resource intensive when moving very large directories.Properties
Repositories. setProperty(RepoPath repoPath, java.lang.String propertyName, java.lang.String... values)
Properties
Repositories. setPropertyRecursively(RepoPath repoPath, java.lang.String propertyName, java.lang.String... values)
java.lang.String
Repositories. translateFilePath(RepoPath source, java.lang.String targetRepoKey)
Translates the path of a file from source repository layout to target's one.StatusHolder
Repositories. undeploy(RepoPath repoPath)
Deprecated.UseRepositories.deleteAtomic(RepoPath)
orRepositories.delete(RepoPath)
instead -
Uses of RepoPath in org.artifactory.request
Methods in org.artifactory.request that return RepoPath Modifier and Type Method Description RepoPath
Request. getRepoPath()
RepoPath
RequestResponseInfo. getRequestRepoPath()
RepoPath
RequestResponseInfo. getResponseRepoPath()
-
Uses of RepoPath in org.artifactory.resource
Methods in org.artifactory.resource that return RepoPath Modifier and Type Method Description RepoPath
RepoResourceInfo. getRepoPath()
-
Uses of RepoPath in org.artifactory.search
Methods in org.artifactory.search that return types with arguments of type RepoPath Modifier and Type Method Description java.util.List<RepoPath>
Searches. archiveEntriesByName(java.lang.String query, java.lang.String... repositories)
Search the content of jar/zip archivesjava.util.List<RepoPath>
Searches. artifactsByGavc(java.lang.String groupId, java.lang.String artifactId, java.lang.String version, java.lang.String classifier, java.lang.String... repositories)
java.util.List<RepoPath>
Searches. artifactsByName(java.lang.String query, java.lang.String... repositories)
Find artifacts by namejava.util.Set<RepoPath>
Searches. artifactsBySha1(java.lang.String sha1, java.lang.String... repositories)
Find artifacts by their checksum valuesjava.util.Set<RepoPath>
Searches. artifactsBySha256(java.lang.String sha256, java.lang.String... repositories)
Find artifacts by their checksum valuesjava.util.List<RepoPath>
Searches. artifactsCreatedOrModifiedInRange(java.util.Calendar from, java.util.Calendar to, java.lang.String... repositories)
Find artifacts created or modified within a date rangejava.util.List<RepoPath>
Searches. artifactsNotDownloadedSince(java.util.Calendar since, java.util.Calendar createdBefore, java.lang.String... repositories)
Find artifacts not downloaded since the specified date, searches for both locally and remotely downloaded stats, using smart remote repository stats where applicable.java.util.List<RepoPath>
Searches. itemsByProperties(com.google.common.collect.SetMultimap<java.lang.String,java.lang.String> properties, java.lang.String... repositories)
Find artifacts by properties -
Uses of RepoPath in org.artifactory.security
Methods in org.artifactory.security with parameters of type RepoPath Modifier and Type Method Description boolean
Security. canAdmin(RepoPath path)
Deprecated.Use#canManage()
insteadboolean
Security. canAnnotate(RepoPath repoPath)
boolean
Security. canDelete(RepoPath path)
boolean
Security. canDeploy(RepoPath path)
boolean
Security. canManage(RepoPath path)
boolean
Security. canRead(RepoPath path)
-