public class Base
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
artifactId |
private java.lang.String |
classifier |
private java.lang.String |
extension |
private java.lang.String |
groupId |
private java.lang.String |
version |
Constructor and Description |
---|
Base() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getArtifactId() |
java.lang.String |
getClassifier() |
java.lang.String |
getExtension() |
java.lang.String |
getGroupId() |
java.lang.String |
getVersion() |
void |
setArtifactId(java.lang.String artifactId)
Set the artifactId of the baseline artifact.
|
void |
setClassifier(java.lang.String classifier)
Set the classifier of the baseline artifact.
|
void |
setExtension(java.lang.String extension)
Set the extension of the baseline artifact.
|
void |
setGroupId(java.lang.String groupId)
Set the groupId of the baseline artifact.
|
void |
setVersion(java.lang.String version)
Set the version or version range of the baseline artifact.
|
java.lang.String |
toString() |
private java.lang.String groupId
private java.lang.String artifactId
private java.lang.String version
private java.lang.String classifier
private java.lang.String extension
public java.lang.String getGroupId()
public void setGroupId(java.lang.String groupId)
groupId
- The groupId of the baseline artifact. This defaults to the
groupId of the project.public java.lang.String getArtifactId()
public void setArtifactId(java.lang.String artifactId)
artifactId
- The artifactId of the baseline artifact. This defaults
to the artifactId of the project.public java.lang.String getVersion()
public void setVersion(java.lang.String version)
version
- The version or version range of the baseline artifact.
This defaults to the highest version less than the version of
the project's artifact.public java.lang.String getClassifier()
public void setClassifier(java.lang.String classifier)
classifier
- The classifier of the baseline artifact. This defaults
to the classifier of the project's artifact.public java.lang.String getExtension()
public void setExtension(java.lang.String extension)
extension
- The extension of the baseline artifact. This defaults to
the extension of the project's artifact.public java.lang.String toString()
toString
in class java.lang.Object