Package io.quarkus.bootstrap.model
Class AppArtifactKey
- java.lang.Object
-
- io.quarkus.bootstrap.model.AppArtifactKey
-
- All Implemented Interfaces:
ArtifactKey,Serializable
public class AppArtifactKey extends Object implements ArtifactKey, Serializable
GroupId, artifactId and classifier- Author:
- Alexey Loubyansky
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringartifactIdprotected Stringclassifierprotected StringgroupIdprotected Stringtype
-
Constructor Summary
Constructors Constructor Description AppArtifactKey(String[] parts)AppArtifactKey(String groupId, String artifactId)AppArtifactKey(String groupId, String artifactId, String classifier)AppArtifactKey(String groupId, String artifactId, String classifier, String type)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)static AppArtifactKeyfromString(String str)StringgetArtifactId()StringgetClassifier()StringgetGroupId()StringgetType()inthashCode()StringtoGacString()StringtoString()
-
-
-
Constructor Detail
-
AppArtifactKey
public AppArtifactKey(String[] parts)
-
-
Method Detail
-
fromString
public static AppArtifactKey fromString(String str)
-
getGroupId
public String getGroupId()
- Specified by:
getGroupIdin interfaceArtifactKey
-
getArtifactId
public String getArtifactId()
- Specified by:
getArtifactIdin interfaceArtifactKey
-
getClassifier
public String getClassifier()
- Specified by:
getClassifierin interfaceArtifactKey
-
getType
public String getType()
- Specified by:
getTypein interfaceArtifactKey
-
toGacString
public String toGacString()
- Specified by:
toGacStringin interfaceArtifactKey
-
-