Added getters for unused fields

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@419886 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2006-07-07 12:47:11 +00:00
parent bd98854481
commit d2477527bd
1 changed files with 15 additions and 0 deletions

View File

@ -44,4 +44,19 @@ public class PomTranslationException
this.artifactId = artifactId;
this.version = version;
}
public String getGroupId()
{
return groupId;
}
public String getArtifactId()
{
return artifactId;
}
public String getVersion()
{
return version;
}
}