com.imsweb.validation.entities.xml.TestXmlDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation Show documentation
Show all versions of validation Show documentation
Java implemenation of the SEER edits.
package com.imsweb.validation.entities.xml;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
@XStreamAlias("test")
public class TestXmlDto {
@XStreamAsAttribute
@XStreamAlias("test-id")
private String testId;
private String script;
public String getTestId() {
return testId;
}
public void setTestId(String testId) {
this.testId = testId;
}
public String getScript() {
return script;
}
public void setScript(String script) {
this.script = script;
}
}