Versiones comparadas

Clave

  • Se ha añadido esta línea.
  • Se ha eliminado esta línea.
  • El formato se ha cambiado.

...

REST/MVC Path for artifact definition
HTTP MethodPathDescriptionController Method
/rest/artifactartifacts/{artifactId}Retrieves artifact file by artifactIdgetArtifact(artifactId: String)
Parameters:
  • artifactId: Artifact identifier (Path parameter)
/rest/versionartifacts/{versiontId}/artifactsRetrives zipped artifact files by versionIdgetPackagedArtifacts(versionId: String)

Parameters:

  • versionId: Version Identifier (Path parameter)

/rest/artifactartifacts/{artifactId}/metadataRetrieves artifact artifacts metadata

getArtifactMetadatagetArtifactsMetadata(artifactIdversionId: String)

Parameters:
  • artifactIdversionId: Artifact  Version identifier (Path Query parameter)
/rest/artifactartifacts/{versionId}Uploads an artifact to the provided versionIduploadArtifacts(versionId: String, artifacts : List<FileAttachmentDTO artifacts, replace : boolean)
Parameters:
  • versionIdVersion identifier (Path parameter)
  • artifacts: Artifact Files (provided from mime-multipart)
  • replace: Indicates if previous artifacts maybe replaced (Request parameter)
/rest/artifactartifacts/{artifactId}Removes an existent artifactremoveArtifact(artifactId: String)
Parameters:
  • artifactId: Artifact identifier (Path parameter)

...