Package com.polarion.alm.builder.model
Interface IBuildArtifactSelector
- All Known Implementing Classes:
BuildArtifactSelector
public interface IBuildArtifactSelector
IBuildArtifact selector.
Every field can end with MATCH_ALL to indicate that given prefix is searched for.
null values of group and artifact ids are treated as MATCH_ALL,
null value of repository tag is taken literally.
- Version:
- $Revision$ $Date$
- Author:
- Stepan Roh, Polarion Software
- See Also:
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionArtifact id (if any).Group id (if any).Repository tag (if any).
-
Field Details
-
MATCH_ALL
match everything - asterisk (*)- See Also:
-
-
Method Details
-
getGroupId
String getGroupId()Group id (if any).- Returns:
- group id or
null(acting asMATCH_ALL)
-
getArtifactId
String getArtifactId()Artifact id (if any).- Returns:
- artifact id or
null(acting asMATCH_ALL)
-
getRepositoryTag
String getRepositoryTag()Repository tag (if any).- Returns:
- repository tag or
null(if tag really isnull)
-