Package com.adobe.aio.cloudmanager
Interface Artifact
-
public interface Artifact
An Artifact for a build step.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDownloadUrl()
The fully qualified download url for this artifact.String
getFileName()
The original file name for this artifact, as referenced in the Adobe systems.String
getId()
The unique identifier for this artifact.String
getMd5()
The md5 hash for the artifact.String
getType()
The type of this artifact.
-
-
-
Method Detail
-
getId
String getId()
The unique identifier for this artifact.- Returns:
- the id
-
getFileName
String getFileName()
The original file name for this artifact, as referenced in the Adobe systems.- Returns:
- the file name
-
getType
String getType()
The type of this artifact. See the List Step API for possible values.- Returns:
- the type
-
getMd5
String getMd5()
The md5 hash for the artifact.- Returns:
- the md5
-
getDownloadUrl
String getDownloadUrl() throws CloudManagerApiException
The fully qualified download url for this artifact.- Returns:
- the download url
- Throws:
CloudManagerApiException
- when any error occurs
-
-