Package org.apache.maven.classrealm
Interface ClassRealmConstituent
public interface ClassRealmConstituent
Describes a constituent of a class realm.
- 
Method SummaryModifier and TypeMethodDescriptionGets the artifact id of the constituent's artifact.Gets the classifier of the constituent's artifact.getFile()Gets the file of the constituent's artifact.Gets the group id of the constituent's artifact.getType()Gets the type of the constituent's artifact.Gets the version of the constituent's artifact.
- 
Method Details- 
getGroupIdString getGroupId()Gets the group id of the constituent's artifact.- Returns:
- The group id, never null.
 
- 
getArtifactIdString getArtifactId()Gets the artifact id of the constituent's artifact.- Returns:
- The artifact id, never null.
 
- 
getTypeString getType()Gets the type of the constituent's artifact.- Returns:
- The type, never null.
 
- 
getClassifierString getClassifier()Gets the classifier of the constituent's artifact.- Returns:
- The classifier or an empty string, never null.
 
- 
getVersionString getVersion()Gets the version of the constituent's artifact.- Returns:
- The version, never null.
 
- 
getFileFile getFile()Gets the file of the constituent's artifact.- Returns:
- The file, never null.
 
 
-