Interface ArtifactHandlerPublishingResult
-
- All Known Implementing Classes:
ArtifactHandlerPublishingResultImpl
public interface ArtifactHandlerPublishingResult
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ArtifactHandlerPublishingResult.Status
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable String
getArchiveName()
Returns archive name if artifact has been compressed by automatic archive creation, null otherwise.@NotNull ArchiverType
getArchiverType()
@NotNull String
getArtifactHandlerKey()
ArtifactHandlerPublishingResult.Status
getStatus()
@Nullable Integer
getTotalUploadedCount()
@Nullable Long
getTotalUploadedSize()
boolean
isSuccessful()
void
setArchiveName(@Nullable String archiveName)
void
setArchiverType(@NotNull ArchiverType archiverType)
void
setArtifactHandlerKey(@NotNull String completeKey)
-
-
-
Method Detail
-
isSuccessful
boolean isSuccessful()
-
getStatus
ArtifactHandlerPublishingResult.Status getStatus()
-
getTotalUploadedSize
@Nullable @Nullable Long getTotalUploadedSize()
-
getTotalUploadedCount
@Nullable @Nullable Integer getTotalUploadedCount()
-
setArtifactHandlerKey
void setArtifactHandlerKey(@NotNull @NotNull String completeKey)
-
getArtifactHandlerKey
@NotNull @NotNull String getArtifactHandlerKey()
-
getArchiverType
@NotNull @NotNull ArchiverType getArchiverType()
-
setArchiverType
void setArchiverType(@NotNull @NotNull ArchiverType archiverType)
-
getArchiveName
@Nullable @Nullable String getArchiveName()
Returns archive name if artifact has been compressed by automatic archive creation, null otherwise.
-
setArchiveName
void setArchiveName(@Nullable @Nullable String archiveName)
-
-