return this.artifactId;
} //-- String getArtifactId()
+ public ArtifactReference artifactId(String artifactId) {
+ this.artifactId = artifactId;
+ return this;
+ }
+
/**
* Get the classifier for this artifact.
*
return this.classifier;
} //-- String getClassifier()
+ public ArtifactReference classifier(String classifier) {
+ this.classifier = classifier;
+ return this;
+ }
+
/**
* Get the Group ID of the repository content.
*
return this.groupId;
} //-- String getGroupId()
+ public ArtifactReference groupId(String groupId) {
+ this.groupId = groupId;
+ return this;
+ }
+
/**
* Get the type of artifact.
*
return this.type;
} //-- String getType()
+ public ArtifactReference type(String type) {
+ this.type = type;
+ return this;
+ }
+
/**
* Get the version of the repository content.
*
return this.version;
} //-- String getVersion()
+ public ArtifactReference version(String version) {
+ this.version = version;
+ return this;
+ }
+
/**
* Set the Artifact ID of the repository content.
*
return this.artifactId;
} //-- String getArtifactId()
+ public ProjectReference artifactId(String artifactId) {
+ this.artifactId = artifactId;
+ return this;
+ }
+
/**
* Get the Group ID of the project reference.
*
return this.groupId;
} //-- String getGroupId()
+ public ProjectReference groupId(String groupId) {
+ this.groupId = groupId;
+ return this;
+ }
+
/**
* Set the Artifact ID of the project reference.
*
return this.artifactId;
} //-- String getArtifactId()
+ public VersionedReference artifactId(String artifactId) {
+ this.artifactId = artifactId;
+ return this;
+ }
+
/**
* Get the Group ID of the repository content.
*
return this.groupId;
} //-- String getGroupId()
+ public VersionedReference groupId(String groupId) {
+ this.groupId = groupId;
+ return this;
+ }
+
/**
* Get the version of the repository content.
*
return this.version;
} //-- String getVersion()
+ public VersionedReference version(String version) {
+ this.version = version;
+ return this;
+ }
+
/**
* Set the Artifact ID of the repository content.
*