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              if (releases != null) {
70                  update(getDelegate().withReleases(releases.getDelegate()));
71                  releases.childrenTracking = this::replace;
72              } else {
73                  update(getDelegate().withReleases(null));
74              }
75          }
76      }
77  
78      public RepositoryPolicy getSnapshots() {
79          return getDelegate().getSnapshots() != null ? new RepositoryPolicy(getDelegate().getSnapshots(), this) : null;
80      }
81  
82      public void setSnapshots(RepositoryPolicy snapshots) {
83          if (!Objects.equals(snapshots, getSnapshots())){
84              if (snapshots != null) {
85                  update(getDelegate().withSnapshots(snapshots.getDelegate()));
86                  snapshots.childrenTracking = this::replace;
87              } else {
88                  update(getDelegate().withSnapshots(null));
89              }
90          }
91      }
92  
93      protected boolean replace(Object oldDelegate, Object newDelegate) {
94          if (super.replace(oldDelegate, newDelegate)) {
95              return true;
96          }
97          if (oldDelegate == getDelegate().getReleases()) {
98              update(getDelegate().withReleases((org.apache.maven.api.settings.RepositoryPolicy) newDelegate));
99              return true;
100         }
101         if (oldDelegate == getDelegate().getSnapshots()) {
102             update(getDelegate().withSnapshots((org.apache.maven.api.settings.RepositoryPolicy) newDelegate));
103             return true;
104         }
105         return false;
106     }
107 
108     public static List<org.apache.maven.api.settings.Repository> repositoryToApiV4(List<Repository> list) {
109         return list != null ? new WrapperList<>(list, Repository::getDelegate, Repository::new) : null;
110     }
111 
112     public static List<Repository> repositoryToApiV3(List<org.apache.maven.api.settings.Repository> list) {
113         return list != null ? new WrapperList<>(list, Repository::new, Repository::getDelegate) : null;
114     }
115 
116 }