Ir al final de los metadatos
Ir al inicio de los metadatos

Estás viendo una versión antigua de este contenido. Ve a la versión actual.

Comparar con el actual Ver historial de versiones

« Anterior Versión 3 Siguiente »


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

Parameters:

  • versionId: Version Identifier (Path parameter)

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

getArtifactMetadata(artifactId: String)

Parameters:
  • artifactId: Artifact identifier (Path parameter)
/rest/artifacts/{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/artifacts/{artifactId}Removes an existent artifactremoveArtifact(artifactId: String)
Parameters:
  • artifactId: Artifact identifier (Path parameter)




  • Sin etiquetas