Class ExecutableDependency


  • public class ExecutableDependency
    extends java.lang.Object

    ExecutableDependency class.

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String artifactId  
      private java.lang.String groupId  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)
      java.lang.String getArtifactId()
      Getter for the field artifactId.
      java.lang.String getGroupId()
      Getter for the field groupId.
      int hashCode()
      boolean matches​(org.apache.maven.artifact.Artifact artifact)
      Matches the groupId and artifactId.
      void setArtifactId​(java.lang.String artifactId)
      Setter for the field artifactId.
      void setGroupId​(java.lang.String groupId)
      Setter for the field groupId.
      java.lang.String toString()
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • groupId

        private java.lang.String groupId
      • artifactId

        private java.lang.String artifactId
    • Constructor Detail

      • ExecutableDependency

        public ExecutableDependency()
    • Method Detail

      • getGroupId

        public java.lang.String getGroupId()

        Getter for the field groupId.

        Returns:
        a String object.
      • setGroupId

        public void setGroupId​(java.lang.String groupId)

        Setter for the field groupId.

        Parameters:
        groupId - a String object.
      • getArtifactId

        public java.lang.String getArtifactId()

        Getter for the field artifactId.

        Returns:
        a String object.
      • setArtifactId

        public void setArtifactId​(java.lang.String artifactId)

        Setter for the field artifactId.

        Parameters:
        artifactId - a String object.
      • matches

        public boolean matches​(org.apache.maven.artifact.Artifact artifact)

        Matches the groupId and artifactId.

        Parameters:
        artifact - a Artifact object.
        Returns:
        true if both math, false otherwise.
      • toString

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

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object