Package org.azd.interfaces
Interface MavenDetails
- All Known Implementing Classes:
MavenApi
public interface MavenDetails
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clearUpstreamingBehavior
(String feedId, String groupId, String artifactId) void
deletePackageVersion
(String feedId, String groupId, String artifactId, String version) void
deletePackageVersionFromRecycleBin
(String feedId, String groupId, String artifactId, String version) getPackageVersion
(String feedId, String groupId, String artifactId, String version) getPackageVersion
(String feedId, String groupId, String artifactId, String version, boolean showDeleted) getPackageVersionFromRecycleBin
(String feedId, String groupId, String artifactId, String version) getUpstreamingBehavior
(String feedId, String groupId, String artifactId) void
restorePackageVersionFromRecycleBin
(String feedId, String groupId, String artifactId, String version) void
setUpstreamingBehavior
(String feedId, String groupId, String artifactId) void
setUpstreamingBehavior
(String feedId, String groupId, String artifactId, String upstreamingBehavior) void
updatePackageVersion
(String feedId, String groupId, String artifactId, String version, String promote) void
updatePackageVersion
(String feedId, String groupId, String artifactId, String version, PackagePromote promote) void
updatePackageVersions
(String feedId, String viewId, PackagesBatchOperation operation, List<Map<String, Object>> packages) void
updateRecycleBinPackages
(String feedId, PackagesBatchOperation operation, List<Map<String, Object>> packages) void
uploadPackage
(String feedId, String groupId, String artifactId, String version, String fileName, InputStream content)
-
Method Details
-
getPackageVersion
Package getPackageVersion(String feedId, String groupId, String artifactId, String version) throws AzDException - Throws:
AzDException
-
getPackageVersion
Package getPackageVersion(String feedId, String groupId, String artifactId, String version, boolean showDeleted) throws AzDException - Throws:
AzDException
-
getPackageVersionFromRecycleBin
MavenPackageVersionDeletionState getPackageVersionFromRecycleBin(String feedId, String groupId, String artifactId, String version) throws AzDException - Throws:
AzDException
-
getUpstreamingBehavior
UpstreamingBehavior getUpstreamingBehavior(String feedId, String groupId, String artifactId) throws AzDException - Throws:
AzDException
-
downloadPackage
InputStream downloadPackage(String feedId, String groupId, String artifactId, String version, String fileName) throws AzDException - Throws:
AzDException
-
updatePackageVersion
void updatePackageVersion(String feedId, String groupId, String artifactId, String version, PackagePromote promote) throws AzDException - Throws:
AzDException
-
updatePackageVersion
void updatePackageVersion(String feedId, String groupId, String artifactId, String version, String promote) throws AzDException - Throws:
AzDException
-
updatePackageVersions
void updatePackageVersions(String feedId, String viewId, PackagesBatchOperation operation, List<Map<String, Object>> packages) throws AzDException- Throws:
AzDException
-
updateRecycleBinPackages
void updateRecycleBinPackages(String feedId, PackagesBatchOperation operation, List<Map<String, Object>> packages) throws AzDException- Throws:
AzDException
-
deletePackageVersion
void deletePackageVersion(String feedId, String groupId, String artifactId, String version) throws AzDException - Throws:
AzDException
-
deletePackageVersionFromRecycleBin
void deletePackageVersionFromRecycleBin(String feedId, String groupId, String artifactId, String version) throws AzDException - Throws:
AzDException
-
restorePackageVersionFromRecycleBin
void restorePackageVersionFromRecycleBin(String feedId, String groupId, String artifactId, String version) throws AzDException - Throws:
AzDException
-
setUpstreamingBehavior
- Throws:
AzDException
-
setUpstreamingBehavior
void setUpstreamingBehavior(String feedId, String groupId, String artifactId, String upstreamingBehavior) throws AzDException - Throws:
AzDException
-
clearUpstreamingBehavior
- Throws:
AzDException
-
uploadPackage
void uploadPackage(String feedId, String groupId, String artifactId, String version, String fileName, InputStream content) throws AzDException - Throws:
AzDException
-