|
Lines 23-28
Link Here
|
| 23 |
private String version; |
23 |
private String version; |
| 24 |
private String label; |
24 |
private String label; |
| 25 |
private String image; |
25 |
private String image; |
|
|
26 |
private String pluginId; |
| 27 |
private boolean primary = false; |
| 28 |
private boolean exclusive = false; |
| 29 |
private String application; |
| 30 |
private String colocationAffinity; |
| 26 |
|
31 |
|
| 27 |
private URLEntry description; |
32 |
private URLEntry description; |
| 28 |
private URLEntry license; |
33 |
private URLEntry license; |
|
Lines 70-79
Link Here
|
| 70 |
entries.add(plugin); |
75 |
entries.add(plugin); |
| 71 |
} |
76 |
} |
| 72 |
|
77 |
|
|
|
78 |
public String getApplication() { |
| 79 |
return application; |
| 80 |
} |
| 81 |
|
| 73 |
public String getArch() { |
82 |
public String getArch() { |
| 74 |
return arch; |
83 |
return arch; |
| 75 |
} |
84 |
} |
| 76 |
|
85 |
|
|
|
86 |
public String getColocationAffinity() { |
| 87 |
return colocationAffinity; |
| 88 |
} |
| 89 |
|
| 77 |
public String getCopyright() { |
90 |
public String getCopyright() { |
| 78 |
if (copyright != null) |
91 |
if (copyright != null) |
| 79 |
return copyright.getAnnotation(); |
92 |
return copyright.getAnnotation(); |
|
Lines 162-167
Link Here
|
| 162 |
return os; |
175 |
return os; |
| 163 |
} |
176 |
} |
| 164 |
|
177 |
|
|
|
178 |
public String getPlugin() { |
| 179 |
return pluginId; |
| 180 |
} |
| 181 |
|
| 165 |
public String getProviderName() { |
182 |
public String getProviderName() { |
| 166 |
return providerName; |
183 |
return providerName; |
| 167 |
} |
184 |
} |
|
Lines 186-191
Link Here
|
| 186 |
return ws; |
203 |
return ws; |
| 187 |
} |
204 |
} |
| 188 |
|
205 |
|
|
|
206 |
public boolean isExclusive() { |
| 207 |
return exclusive; |
| 208 |
} |
| 209 |
|
| 210 |
public boolean isPrimary() { |
| 211 |
return primary; |
| 212 |
} |
| 213 |
|
| 214 |
public void setApplication(String application) { |
| 215 |
this.application = application; |
| 216 |
} |
| 217 |
|
| 218 |
public void setColocationAffinity(String colocationAffinity) { |
| 219 |
this.colocationAffinity = colocationAffinity; |
| 220 |
} |
| 221 |
|
| 189 |
public void setCopyright(String copyright) { |
222 |
public void setCopyright(String copyright) { |
| 190 |
if (this.copyright == null) |
223 |
if (this.copyright == null) |
| 191 |
this.copyright = new URLEntry(); |
224 |
this.copyright = new URLEntry(); |
|
Lines 217-222
Link Here
|
| 217 |
this.nl = nl; |
250 |
this.nl = nl; |
| 218 |
} |
251 |
} |
| 219 |
|
252 |
|
|
|
253 |
public void setExclusive(boolean exclusive) { |
| 254 |
this.exclusive = exclusive; |
| 255 |
} |
| 256 |
|
| 220 |
public void setImage(String image) { |
257 |
public void setImage(String image) { |
| 221 |
this.image = image; |
258 |
this.image = image; |
| 222 |
} |
259 |
} |
|
Lines 257-262
Link Here
|
| 257 |
this.location = location; |
294 |
this.location = location; |
| 258 |
} |
295 |
} |
| 259 |
|
296 |
|
|
|
297 |
public void setPlugin(String pluginId) { |
| 298 |
this.pluginId = pluginId; |
| 299 |
} |
| 300 |
|
| 301 |
public void setPrimary(boolean primary) { |
| 302 |
this.primary = primary; |
| 303 |
} |
| 304 |
|
| 260 |
public void setProviderName(String value) { |
305 |
public void setProviderName(String value) { |
| 261 |
providerName = value; |
306 |
providerName = value; |
| 262 |
} |
307 |
} |