Class ExtendedMojoDescriptor.AfterLink

  • Enclosing class:
    ExtendedMojoDescriptor

    public static class ExtendedMojoDescriptor.AfterLink
    extends java.lang.Object
    Holds after-link data from the @After annotation.

    Mirrors the org.apache.maven.api.plugin.descriptor.AfterLink model class from the Maven 4 API without introducing a compile-time dependency on it.

    Since:
    4.0.0
    • Constructor Summary

      Constructors 
      Constructor Description
      AfterLink​(java.lang.String phase, java.lang.String type, java.lang.String scope)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getPhase()  
      java.lang.String getScope()  
      java.lang.String getType()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • AfterLink

        public AfterLink​(java.lang.String phase,
                         java.lang.String type,
                         java.lang.String scope)
    • Method Detail

      • getPhase

        public java.lang.String getPhase()
      • getType

        public java.lang.String getType()
      • getScope

        public java.lang.String getScope()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object