Package org.apache.maven.classrealm
Interface ClassRealmConstituent
-
- All Known Implementing Classes:
ArtifactClassRealmConstituent
public interface ClassRealmConstituent
Describes a constituent of a class realm.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getArtifactId()
Gets the artifact id of the constituent's artifact.java.lang.String
getClassifier()
Gets the classifier of the constituent's artifact.java.io.File
getFile()
Gets the file of the constituent's artifact.java.lang.String
getGroupId()
Gets the group id of the constituent's artifact.java.lang.String
getType()
Gets the type of the constituent's artifact.java.lang.String
getVersion()
Gets the version of the constituent's artifact.
-
-
-
Method Detail
-
getGroupId
java.lang.String getGroupId()
Gets the group id of the constituent's artifact.- Returns:
- The group id, never
null
.
-
getArtifactId
java.lang.String getArtifactId()
Gets the artifact id of the constituent's artifact.- Returns:
- The artifact id, never
null
.
-
getType
java.lang.String getType()
Gets the type of the constituent's artifact.- Returns:
- The type, never
null
.
-
getClassifier
java.lang.String getClassifier()
Gets the classifier of the constituent's artifact.- Returns:
- The classifier or an empty string, never
null
.
-
getVersion
java.lang.String getVersion()
Gets the version of the constituent's artifact.- Returns:
- The version, never
null
.
-
getFile
java.io.File getFile()
Gets the file of the constituent's artifact.- Returns:
- The file, never
null
.
-
-