Class ArtifactContent
- java.lang.Object
-
- io.apicurio.registry.rest.v2.beans.ArtifactContent
-
@Generated("jsonschema2pojo") public class ArtifactContent extends Object
-
-
Constructor Summary
Constructors Constructor Description ArtifactContent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContent()Raw content of the artifact or a valid (and accessible) URL where the content can be found.List<ArtifactReference>getReferences()Collection of references to other artifacts.voidsetContent(String content)Raw content of the artifact or a valid (and accessible) URL where the content can be found.voidsetReferences(List<ArtifactReference> references)Collection of references to other artifacts.
-
-
-
Method Detail
-
getContent
public String getContent()
Raw content of the artifact or a valid (and accessible) URL where the content can be found. (Required)
-
setContent
public void setContent(String content)
Raw content of the artifact or a valid (and accessible) URL where the content can be found. (Required)
-
getReferences
public List<ArtifactReference> getReferences()
Collection of references to other artifacts. (Required)
-
setReferences
public void setReferences(List<ArtifactReference> references)
Collection of references to other artifacts. (Required)
-
-