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.model;
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 Extension
21      extends BaseObject
22  {
23  
24      public Extension()
25      {
26          this( org.apache.maven.api.model.Extension.newInstance() );
27      }
28  
29      public Extension( org.apache.maven.api.model.Extension delegate )
30      {
31          this( delegate, null );
32      }
33  
34      public Extension( org.apache.maven.api.model.Extension delegate, BaseObject parent )
35      {
36          super( delegate, parent );
37      }
38  
39      public Extension clone()
40      {
41          return new Extension( getDelegate() );
42      }
43  
44      public org.apache.maven.api.model.Extension getDelegate()
45      {
46          return ( org.apache.maven.api.model.Extension ) super.getDelegate();
47      }
48  
49      @Override
50      public boolean equals( Object o )
51      {
52          if ( this == o )
53          {
54              return true;
55          }
56          if ( o == null || !( o instanceof Extension ) )
57          {
58              return false;
59          }
60          Extension that = ( Extension ) o;
61          return Objects.equals( this.delegate, that.delegate );
62      }
63  
64      @Override
65      public int hashCode()
66      {
67          return getDelegate().hashCode();
68      }
69  
70      public String getGroupId()
71      {
72          return getDelegate().getGroupId();
73      }
74  
75      public void setGroupId( String groupId )
76      {
77          if ( !Objects.equals( groupId, getDelegate().getGroupId() ) )
78          {
79              update( getDelegate().withGroupId( groupId ) );
80          }
81      }
82  
83      public String getArtifactId()
84      {
85          return getDelegate().getArtifactId();
86      }
87  
88      public void setArtifactId( String artifactId )
89      {
90          if ( !Objects.equals( artifactId, getDelegate().getArtifactId() ) )
91          {
92              update( getDelegate().withArtifactId( artifactId ) );
93          }
94      }
95  
96      public String getVersion()
97      {
98          return getDelegate().getVersion();
99      }
100 
101     public void setVersion( String version )
102     {
103         if ( !Objects.equals( version, getDelegate().getVersion() ) )
104         {
105             update( getDelegate().withVersion( version ) );
106         }
107     }
108 
109     public InputLocation getLocation( Object key )
110     {
111         org.apache.maven.api.model.InputLocation loc = getDelegate().getLocation( key );
112         return loc != null ? new InputLocation( loc ) : null;
113     }
114 
115     public void setLocation( Object key, InputLocation location )
116     {
117         update( org.apache.maven.api.model.Extension.newBuilder( getDelegate(), true )
118                         .location( key, location.toApiLocation() ).build() );
119     }
120 
121     protected boolean replace( Object oldDelegate, Object newDelegate )
122     {
123         if ( super.replace( oldDelegate, newDelegate ) )
124         {
125             return true;
126         }
127         return false;
128     }
129 
130     public static List<org.apache.maven.api.model.Extension> extensionToApiV4( List<Extension> list )
131     {
132         return list != null ? new WrapperList<>( list, Extension::getDelegate, Extension::new ) : null;
133     }
134 
135     public static List<Extension> extensionToApiV3( List<org.apache.maven.api.model.Extension> list )
136     {
137         return list != null ? new WrapperList<>( list, Extension::new, Extension::getDelegate ) : null;
138     }
139 
140 }