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.Set;
15  import java.util.stream.Collectors;
16  import java.util.stream.Stream;
17  import org.apache.maven.api.annotations.Generated;
18  import org.apache.maven.api.annotations.Nonnull;
19  
20  @Generated
21  public class ActivationFile
22      extends BaseObject
23  {
24  
25      public ActivationFile() {
26          this(org.apache.maven.api.model.ActivationFile.newInstance());
27      }
28  
29      public ActivationFile(org.apache.maven.api.model.ActivationFile delegate) {
30          this(delegate, null);
31      }
32  
33      public ActivationFile(org.apache.maven.api.model.ActivationFile delegate, BaseObject parent) {
34          super(delegate, parent);
35      }
36  
37      public ActivationFile clone(){
38          return new ActivationFile(getDelegate());
39      }
40  
41      public org.apache.maven.api.model.ActivationFile getDelegate() {
42          return (org.apache.maven.api.model.ActivationFile) super.getDelegate();
43      }
44  
45      @Override
46      public boolean equals(Object o) {
47          if (this == o) {
48              return true;
49          }
50          if (o == null || !(o instanceof ActivationFile)) {
51              return false;
52          }
53          ActivationFile that = (ActivationFile) o;
54          return Objects.equals(this.delegate, that.delegate);
55      }
56  
57      @Override
58      public int hashCode() {
59          return getDelegate().hashCode();
60      }
61  
62      public String getMissing() {
63          return getDelegate().getMissing();
64      }
65  
66      public void setMissing(String missing) {
67          if (!Objects.equals(missing, getMissing())) {
68              update(getDelegate().withMissing(missing));
69          }
70      }
71  
72      public String getExists() {
73          return getDelegate().getExists();
74      }
75  
76      public void setExists(String exists) {
77          if (!Objects.equals(exists, getExists())) {
78              update(getDelegate().withExists(exists));
79          }
80      }
81  
82      public InputLocation getLocation(Object key) {
83          org.apache.maven.api.model.InputLocation loc = getDelegate().getLocation(key);
84          return loc != null ? new InputLocation(loc) : null;
85      }
86  
87      public void setLocation(Object key, InputLocation location) {
88          update(org.apache.maven.api.model.ActivationFile.newBuilder(getDelegate(), true)
89                          .location(key, location.toApiLocation()).build());
90      }
91  
92      public InputLocation getImportedFrom() {
93          org.apache.maven.api.model.InputLocation loc = getDelegate().getImportedFrom();
94          return loc != null ? new InputLocation(loc) : null;
95      }
96  
97      public void setImportedFrom(InputLocation location) {
98          update(org.apache.maven.api.model.ActivationFile.newBuilder(getDelegate(), true)
99                          .importedFrom(location.toApiLocation()).build());
100     }
101 
102     public Set<Object> getLocationKeys() {
103         return getDelegate().getLocationKeys();
104     }
105 
106     protected boolean replace(Object oldDelegate, Object newDelegate) {
107         if (super.replace(oldDelegate, newDelegate)) {
108             return true;
109         }
110         return false;
111     }
112 
113     public static List<org.apache.maven.api.model.ActivationFile> activationFileToApiV4(List<ActivationFile> list) {
114         return list != null ? new WrapperList<>(list, ActivationFile::getDelegate, ActivationFile::new) : null;
115     }
116 
117     public static List<ActivationFile> activationFileToApiV3(List<org.apache.maven.api.model.ActivationFile> list) {
118         return list != null ? new WrapperList<>(list, ActivationFile::new, ActivationFile::getDelegate) : null;
119     }
120 
121 }