]> source.dussan.org Git - archiva.git/commitdiff
format cleanup : no code change
authorOlivier Lamy <olamy@apache.org>
Tue, 13 Sep 2011 12:02:36 +0000 (12:02 +0000)
committerOlivier Lamy <olamy@apache.org>
Tue, 13 Sep 2011 12:02:36 +0000 (12:02 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1170131 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/model/Artifact.java

index 251c5ea8c5a5cae5187c426f1cbc0aa01f78e5a1..a98585291cf3aa5a82f1f0ba45116b1c833fbd98 100644 (file)
@@ -40,74 +40,16 @@ public class Artifact
 
     public Artifact()
     {
-
-    }
-
-    @Override
-    public boolean equals( Object o )
-    {
-        if ( this == o )
-        {
-            return true;
-        }
-        if ( o == null || getClass() != o.getClass() )
-        {
-            return false;
-        }
-
-        Artifact artifact = (Artifact) o;
-
-        if ( !artifactId.equals( artifact.artifactId ) )
-        {
-            return false;
-        }
-        if ( !groupId.equals( artifact.groupId ) )
-        {
-            return false;
-        }
-        if ( !repositoryId.equals( artifact.repositoryId ) )
-        {
-            return false;
-        }
-        if ( type != null ? !type.equals( artifact.type ) : artifact.type != null )
-        {
-            return false;
-        }
-        if ( !version.equals( artifact.version ) )
-        {
-            return false;
-        }
-
-        return true;
-    }
-
-    @Override
-    public int hashCode()
-    {
-        int result = repositoryId.hashCode();
-        result = 31 * result + groupId.hashCode();
-        result = 31 * result + artifactId.hashCode();
-        result = 31 * result + version.hashCode();
-        result = 31 * result + ( type != null ? type.hashCode() : 0 );
-        return result;
-    }
-
-    @Override
-    public String toString()
-    {
-        return "Artifact{" + "repositoryId='" + repositoryId + '\'' + ", groupId='" + groupId + '\'' + ", artifactId='"
-            + artifactId + '\'' + ", version='" + version + '\'' + ", type='" + type + '\'' + '}';
+        // no op
     }
 
     public Artifact( String repositoryId, String groupId, String artifactId, String version, String type )
-//                     String type, Date whenGathered )
     {
         this.repositoryId = repositoryId;
         this.groupId = groupId;
         this.artifactId = artifactId;
         this.version = version;
         this.type = type;
-        //this.whenGathered = whenGathered;
     }
 
     public String getGroupId()
@@ -135,11 +77,6 @@ public class Artifact
         return repositoryId;
     }
 
-    /*public Date getWhenGathered()
-    {
-        return whenGathered;
-    }*/
-
     public void setGroupId( String groupId )
     {
         this.groupId = groupId;
@@ -165,9 +102,67 @@ public class Artifact
         this.repositoryId = repositoryId;
     }
 
-    /*@ServiceBeanField( "whenGathered" )
-    public void setWhenGathered( Date whenGathered )
+    @Override
+    public boolean equals( Object o )
     {
-        this.whenGathered = whenGathered;
-    }*/
+        if ( this == o )
+        {
+            return true;
+        }
+        if ( o == null || getClass() != o.getClass() )
+        {
+            return false;
+        }
+
+        Artifact artifact = (Artifact) o;
+
+        if ( !artifactId.equals( artifact.artifactId ) )
+        {
+            return false;
+        }
+        if ( !groupId.equals( artifact.groupId ) )
+        {
+            return false;
+        }
+        if ( !repositoryId.equals( artifact.repositoryId ) )
+        {
+            return false;
+        }
+        if ( type != null ? !type.equals( artifact.type ) : artifact.type != null )
+        {
+            return false;
+        }
+        if ( !version.equals( artifact.version ) )
+        {
+            return false;
+        }
+
+        return true;
+    }
+
+    @Override
+    public int hashCode()
+    {
+        int result = repositoryId.hashCode();
+        result = 31 * result + groupId.hashCode();
+        result = 31 * result + artifactId.hashCode();
+        result = 31 * result + version.hashCode();
+        result = 31 * result + ( type != null ? type.hashCode() : 0 );
+        return result;
+    }
+
+    @Override
+    public String toString()
+    {
+        final StringBuilder sb = new StringBuilder();
+        sb.append( "Artifact" );
+        sb.append( "{repositoryId='" ).append( repositoryId ).append( '\'' );
+        sb.append( ", groupId='" ).append( groupId ).append( '\'' );
+        sb.append( ", artifactId='" ).append( artifactId ).append( '\'' );
+        sb.append( ", version='" ).append( version ).append( '\'' );
+        sb.append( ", type='" ).append( type ).append( '\'' );
+        sb.append( '}' );
+        return sb.toString();
+    }
+
 }