View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   //  Generated by Modello Velocity from model-v3.vm
3   //  template, any modifications will be overwritten.
4   // ==============================================================
5   package org.apache.maven.settings;
6   
7   import java.io.Serializable;
8   import java.util.AbstractList;
9   import java.util.Collections;
10  import java.util.HashMap;
11  import java.util.List;
12  import java.util.Map;
13  import java.util.Objects;
14  import java.util.stream.Collectors;
15  import java.util.stream.Stream;
16  import org.apache.maven.api.annotations.Generated;
17  import org.apache.maven.api.annotations.Nonnull;
18  
19  @Generated
20  public class Repository
21      extends RepositoryBase
22      implements Serializable, Cloneable
23  {
24  
25      public Repository() {
26          this(org.apache.maven.api.settings.Repository.newInstance());
27      }
28  
29      public Repository(org.apache.maven.api.settings.Repository delegate) {
30          this(delegate, null);
31      }
32  
33      public Repository(org.apache.maven.api.settings.Repository delegate, BaseObject parent) {
34          super(delegate, parent);
35      }
36  
37      public Repository clone(){
38          return new Repository(getDelegate());
39      }
40  
41      @Override
42      public org.apache.maven.api.settings.Repository getDelegate() {
43          return (org.apache.maven.api.settings.Repository) super.getDelegate();
44      }
45  
46      @Override
47      public boolean equals(Object o) {
48          if (this == o) {
49              return true;
50          }
51          if (o == null || !(o instanceof Repository)) {
52              return false;
53          }
54          Repository that = (Repository) o;
55          return Objects.equals(this.delegate, that.delegate);
56      }
57  
58      @Override
59      public int hashCode() {
60          return getDelegate().hashCode();
61      }
62  
63      public RepositoryPolicy getReleases() {
64          return getDelegate().getReleases() != null ? new RepositoryPolicy(getDelegate().getReleases(), this) : null;
65      }
66  
67      public void setReleases(RepositoryPolicy releases) {
68          if (!Objects.equals(releases, getReleases())) {
69              update(getDelegate().withReleases(releases.getDelegate()));
70              releases.childrenTracking = this::replace;
71          }
72      }
73  
74      public RepositoryPolicy getSnapshots() {
75          return getDelegate().getSnapshots() != null ? new RepositoryPolicy(getDelegate().getSnapshots(), this) : null;
76      }
77  
78      public void setSnapshots(RepositoryPolicy snapshots) {
79          if (!Objects.equals(snapshots, getSnapshots())) {
80              update(getDelegate().withSnapshots(snapshots.getDelegate()));
81              snapshots.childrenTracking = this::replace;
82          }
83      }
84  
85      protected boolean replace(Object oldDelegate, Object newDelegate) {
86          if (super.replace(oldDelegate, newDelegate)) {
87              return true;
88          }
89          if (oldDelegate == getDelegate().getReleases()) {
90              update(getDelegate().withReleases((org.apache.maven.api.settings.RepositoryPolicy) newDelegate));
91              return true;
92          }
93          if (oldDelegate == getDelegate().getSnapshots()) {
94              update(getDelegate().withSnapshots((org.apache.maven.api.settings.RepositoryPolicy) newDelegate));
95              return true;
96          }
97          return false;
98      }
99  
100     public static List<org.apache.maven.api.settings.Repository> repositoryToApiV4(List<Repository> list) {
101         return list != null ? new WrapperList<>(list, Repository::getDelegate, Repository::new) : null;
102     }
103 
104     public static List<Repository> repositoryToApiV3(List<org.apache.maven.api.settings.Repository> list) {
105         return list != null ? new WrapperList<>(list, Repository::new, Repository::getDelegate) : null;
106     }
107 
108 }