forked from jenkinsci/azure-vm-agents-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuiltInImage.java
38 lines (28 loc) · 896 Bytes
/
BuiltInImage.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.microsoft.azure.vmagent.builders;
public class BuiltInImage {
private String builtInImage;
private boolean isInstallGit;
private boolean isInstallMaven;
private boolean isInstallDocker;
public BuiltInImage(String builtInImage,
boolean isInstallGit,
boolean isInstallMaven,
boolean isInstallDocker) {
this.builtInImage = builtInImage;
this.isInstallGit = isInstallGit;
this.isInstallMaven = isInstallMaven;
this.isInstallDocker = isInstallDocker;
}
public String getBuiltInImage() {
return builtInImage;
}
public boolean isInstallGit() {
return isInstallGit;
}
public boolean isInstallMaven() {
return isInstallMaven;
}
public boolean isInstallDocker() {
return isInstallDocker;
}
}