add the agentDetailModel
This commit is contained in:
parent
20fb4e108e
commit
f84f458001
|
@ -0,0 +1,28 @@
|
|||
package org.bench4q.master.api.model;
|
||||
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
|
||||
import org.bench4q.master.communication.agent.TestDetailStatusModel;
|
||||
|
||||
public class AgentDetailModel {
|
||||
private boolean finish;
|
||||
private TestDetailStatusModel testStatusModel;
|
||||
|
||||
@XmlElement(name = "finish")
|
||||
public boolean isFinish() {
|
||||
return finish;
|
||||
}
|
||||
|
||||
public void setFinish(boolean finish) {
|
||||
this.finish = finish;
|
||||
}
|
||||
|
||||
@XmlElement
|
||||
public TestDetailStatusModel getTestStatusModel() {
|
||||
return testStatusModel;
|
||||
}
|
||||
|
||||
public void setTestStatusModel(TestDetailStatusModel testStatusModel) {
|
||||
this.testStatusModel = testStatusModel;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue