aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/org/onap/sdc/ci/tests/datatypes/LocalLoginFieldsIds.java
diff options
context:
space:
mode:
Diffstat (limited to 'vid-automation/src/main/java/org/onap/sdc/ci/tests/datatypes/LocalLoginFieldsIds.java')
-rw-r--r--vid-automation/src/main/java/org/onap/sdc/ci/tests/datatypes/LocalLoginFieldsIds.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/vid-automation/src/main/java/org/onap/sdc/ci/tests/datatypes/LocalLoginFieldsIds.java b/vid-automation/src/main/java/org/onap/sdc/ci/tests/datatypes/LocalLoginFieldsIds.java
new file mode 100644
index 000000000..a3ede39cb
--- /dev/null
+++ b/vid-automation/src/main/java/org/onap/sdc/ci/tests/datatypes/LocalLoginFieldsIds.java
@@ -0,0 +1,30 @@
+package org.onap.sdc.ci.tests.datatypes;
+
+public class LocalLoginFieldsIds {
+
+ private String userIdFieldName;
+ private String passwordFieldName;
+
+
+ public LocalLoginFieldsIds(String userIdFieldName, String passwordFieldName) {
+ super();
+ this.userIdFieldName = userIdFieldName;
+ this.passwordFieldName = passwordFieldName;
+ }
+
+
+ public String getUserIdFieldName() {
+ return userIdFieldName;
+ }
+ public void setUserIdFieldName(String userIdFieldName) {
+ this.userIdFieldName = userIdFieldName;
+ }
+ public String getPasswordFieldName() {
+ return passwordFieldName;
+ }
+ public void setPasswordFieldName(String passwordFieldName) {
+ this.passwordFieldName = passwordFieldName;
+ }
+
+
+}