Skip to content

Commit 73eb9f5

Browse files
CSTACKEX-34: Unable to get checkstyle pass hence fixing this as well
1 parent edfcdde commit 73eb9f5

File tree

1 file changed

+12
-12
lines changed
  • plugins/storage/volume/ontap/src/main/java/org/apache/cloudstack/storage/feign/model

1 file changed

+12
-12
lines changed

plugins/storage/volume/ontap/src/main/java/org/apache/cloudstack/storage/feign/model/OntapStorage.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@
2222
import org.apache.cloudstack.storage.utils.Constants.ProtocolType;
2323

2424
public class OntapStorage {
25-
public static String username;
26-
public static String password;
27-
public static String managementLIF;
28-
public static String svmName;
29-
public static ProtocolType protocolType;
30-
public static Boolean isDisaggregated;
25+
private String username;
26+
private String password;
27+
private String managementLIF;
28+
private String svmName;
29+
private ProtocolType protocolType;
30+
private Boolean isDisaggregated;
3131

3232
public OntapStorage(String username, String password, String managementLIF, String svmName, ProtocolType protocolType, Boolean isDisaggregated) {
33-
username = username;
34-
password = password;
35-
managementLIF = managementLIF;
36-
svmName = svmName;
37-
protocolType = protocolType;
38-
isDisaggregated = isDisaggregated;
33+
this.username = username;
34+
this.password = password;
35+
this.managementLIF = managementLIF;
36+
this.svmName = svmName;
37+
this.protocolType = protocolType;
38+
this.isDisaggregated = isDisaggregated;
3939
}
4040

4141
public String getUsername() {

0 commit comments

Comments
 (0)