View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.model.building;
20  
21  import java.io.File;
22  import java.util.Objects;
23  import org.apache.maven.building.FileSource;
24  
25  /**
26   * Represents a model pulled from a repository
27   *
28   * @author Robert Scholte
29   * @since 4.0.0
30   */
31  public class ArtifactModelSource extends FileSource implements ModelSource {
32      private final String groupId;
33  
34      private final String artifactId;
35  
36      private final String version;
37  
38      private final int hashCode;
39  
40      public ArtifactModelSource(File file, String groupId, String artifactId, String version) {
41          super(file);
42          this.groupId = groupId;
43          this.artifactId = artifactId;
44          this.version = version;
45          this.hashCode = Objects.hash(groupId, artifactId, version);
46      }
47  
48      public String getGroupId() {
49          return groupId;
50      }
51  
52      public String getArtifactId() {
53          return artifactId;
54      }
55  
56      public String getVersion() {
57          return version;
58      }
59  
60      @Override
61      public int hashCode() {
62          return hashCode;
63      }
64  
65      @Override
66      public boolean equals(Object obj) {
67          if (this == obj) {
68              return true;
69          }
70          if (obj == null) {
71              return false;
72          }
73  
74          if (!ArtifactModelSource.class.equals(obj.getClass())) {
75              return false;
76          }
77  
78          ArtifactModelSource other = (ArtifactModelSource) obj;
79          return Objects.equals(artifactId, other.artifactId)
80                  && Objects.equals(groupId, other.groupId)
81                  && Objects.equals(version, other.version);
82      }
83  }