com.github.siwenyan.si.model.SiModelTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of side Show documentation
Show all versions of side Show documentation
Java runner of Selenium IDE project
package com.github.siwenyan.si.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
public class SiModelTest {
private String id = UUID.randomUUID().toString();
private String name = "";
private List commands = new ArrayList();
@JsonIgnore
private String suite = "";
@Override
public String toString() {
return this.name;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List getCommands() {
return commands;
}
public void setCommands(List commands) {
this.commands = commands;
}
@JsonIgnore
public String getSuite() {
return suite;
}
@JsonIgnore
public void setSuite(String suite) {
this.suite = suite;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy