Package org.xwiki.tool.packager
Class ArtifactItem
- java.lang.Object
-
- org.xwiki.tool.packager.ArtifactItem
-
- Direct Known Subclasses:
SkinArtifactItem
public class ArtifactItem extends Object
Represents an Artifact Item in the plugin configuration.- Since:
- 3.4M1
- Version:
- $Id: eed69aa43fda14a7f0067e5ac2d0df338604dad7 $
-
-
Constructor Summary
Constructors Constructor Description ArtifactItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getArtifactId()
String
getClassifier()
String
getGroupId()
String
getType()
String
getVersion()
void
setArtifactId(String artifactId)
void
setClassifier(String classifier)
void
setGroupId(String groupId)
void
setType(String type)
void
setVersion(String version)
String
toString()
-
-
-
Method Detail
-
getArtifactId
public String getArtifactId()
- Returns:
- the artifact id
-
setArtifactId
public void setArtifactId(String artifactId)
- Parameters:
artifactId
- the artifactId to set
-
getGroupId
public String getGroupId()
- Returns:
- the groupId
-
setGroupId
public void setGroupId(String groupId)
- Parameters:
groupId
- the groupId to set
-
getType
public String getType()
- Returns:
- the type
-
setType
public void setType(String type)
- Parameters:
type
- The type to set
-
getVersion
public String getVersion()
- Returns:
- Returns the version.
-
setVersion
public void setVersion(String version)
- Parameters:
version
- the version to set
-
getClassifier
public String getClassifier()
- Returns:
- the artifact classifier
-
setClassifier
public void setClassifier(String classifier)
- Parameters:
classifier
- the artifat classifier
-
-