Interface PluginPrefixResult

  • All Known Implementing Classes:
    DefaultPluginPrefixResult

    public interface PluginPrefixResult
    Describes the result of a plugin prefix resolution request.
    Since:
    3.0
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getArtifactId()
      The resolved artifact id for the plugin.
      java.lang.String getGroupId()
      The resolved group id for the plugin.
      org.eclipse.aether.repository.ArtifactRepository getRepository()
      The repository from which the plugin prefix was resolved.
    • Method Detail

      • getGroupId

        java.lang.String getGroupId()
        The resolved group id for the plugin.
        Returns:
        The resolved group id for the plugin, never null.
      • getArtifactId

        java.lang.String getArtifactId()
        The resolved artifact id for the plugin.
        Returns:
        The resolved artifact id for the plugin, never null.
      • getRepository

        org.eclipse.aether.repository.ArtifactRepository getRepository()
        The repository from which the plugin prefix was resolved.
        Returns:
        The repository from which the plugin prefix was resolved or null if the prefix was resolved from the supplied POM.