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.artifact.repository.metadata;
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 Plugin
21      extends BaseObject
22  {
23  
24      public Plugin() {
25          this(org.apache.maven.artifact.repository.metadata.v4.Plugin.newInstance());
26      }
27  
28      public Plugin(org.apache.maven.artifact.repository.metadata.v4.Plugin delegate) {
29          this(delegate, null);
30      }
31  
32      public Plugin(org.apache.maven.artifact.repository.metadata.v4.Plugin delegate, BaseObject parent) {
33          super(delegate, parent);
34      }
35  
36      public Plugin clone(){
37          return new Plugin(getDelegate());
38      }
39  
40      public org.apache.maven.artifact.repository.metadata.v4.Plugin getDelegate() {
41          return (org.apache.maven.artifact.repository.metadata.v4.Plugin) super.getDelegate();
42      }
43  
44      @Override
45      public boolean equals(Object o) {
46          if (this == o) {
47              return true;
48          }
49          if (o == null || !(o instanceof Plugin)) {
50              return false;
51          }
52          Plugin that = (Plugin) o;
53          return Objects.equals(this.delegate, that.delegate);
54      }
55  
56      @Override
57      public int hashCode() {
58          return getDelegate().hashCode();
59      }
60  
61      public String getName() {
62          return getDelegate().getName();
63      }
64  
65      public void setName(String name) {
66          if (!Objects.equals(name, getName())) {
67              update(getDelegate().withName(name));
68          }
69      }
70  
71      public String getPrefix() {
72          return getDelegate().getPrefix();
73      }
74  
75      public void setPrefix(String prefix) {
76          if (!Objects.equals(prefix, getPrefix())) {
77              update(getDelegate().withPrefix(prefix));
78          }
79      }
80  
81      public String getArtifactId() {
82          return getDelegate().getArtifactId();
83      }
84  
85      public void setArtifactId(String artifactId) {
86          if (!Objects.equals(artifactId, getArtifactId())) {
87              update(getDelegate().withArtifactId(artifactId));
88          }
89      }
90  
91      protected boolean replace(Object oldDelegate, Object newDelegate) {
92          if (super.replace(oldDelegate, newDelegate)) {
93              return true;
94          }
95          return false;
96      }
97  
98      public static List<org.apache.maven.artifact.repository.metadata.v4.Plugin> pluginToApiV4(List<Plugin> list) {
99          return list != null ? new WrapperList<>(list, Plugin::getDelegate, Plugin::new) : null;
100     }
101 
102     public static List<Plugin> pluginToApiV3(List<org.apache.maven.artifact.repository.metadata.v4.Plugin> list) {
103         return list != null ? new WrapperList<>(list, Plugin::new, Plugin::getDelegate) : null;
104     }
105 
106 }