42 lines
877 B
Java
42 lines
877 B
Java
package com.machint.automation.model;
|
|
|
|
public class FormObject {
|
|
|
|
private String environment;
|
|
private String browser;
|
|
private String product;
|
|
private String testCase;
|
|
public String getEnvironment() {
|
|
return environment;
|
|
}
|
|
public void setEnvironment(String environment) {
|
|
this.environment = environment;
|
|
}
|
|
public String getBrowser() {
|
|
return browser;
|
|
}
|
|
public void setBrowser(String browser) {
|
|
this.browser = browser;
|
|
}
|
|
public String getProduct() {
|
|
return product;
|
|
}
|
|
public void setProduct(String product) {
|
|
this.product = product;
|
|
}
|
|
public String getTestCase() {
|
|
return testCase;
|
|
}
|
|
public void setTestCase(String testCase) {
|
|
this.testCase = testCase;
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return "FormObject [environment=" + environment + ", browser=" + browser + ", product=" + product
|
|
+ ", testCase=" + testCase + "]";
|
|
}
|
|
|
|
|
|
|
|
}
|