
org.phoenix.model.ScenarioLogBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of phoenix_webdriver Show documentation
Show all versions of phoenix_webdriver Show documentation
update:检查点bug修复,增加js执行的驱动,commandExecutor方法bug修复,驱动更新支持最新Firefox47/chrome51/IE10/IE11/IE Edge
package org.phoenix.model;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import org.phoenix.enums.TaskStatusType;
@Entity
@Table(name="l_web_scenario")
public class ScenarioLogBean {
private int id;
private int uid;
private String scenarioName;
private TaskStatusType taskStatusType;
private BatchLogBean batchLogBean;
private String message;
@Id
@GeneratedValue
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getUid() {
return uid;
}
public void setUid(int uid) {
this.uid = uid;
}
public String getScenarioName() {
return scenarioName;
}
public void setScenarioName(String scenarioName) {
this.scenarioName = scenarioName;
}
@ManyToOne(fetch=FetchType.EAGER)
@JoinColumn(name="batchLogId")
public BatchLogBean getBatchLogBean() {
return batchLogBean;
}
public void setBatchLogBean(BatchLogBean batchLogBean) {
this.batchLogBean = batchLogBean;
}
@Enumerated(EnumType.STRING)
public TaskStatusType getTaskStatusType() {
return taskStatusType;
}
public void setTaskStatusType(TaskStatusType taskStatusType) {
this.taskStatusType = taskStatusType;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy