
com.qaprosoft.alice.models.db.LogHistory Maven / Gradle / Ivy
The newest version!
package com.qaprosoft.alice.models.db;
public class LogHistory extends AbstractEntity
{
private static final long serialVersionUID = -2350778003901177682L;
private String cmd;
private String log;
private Long userId;
private Status status;
private Integer pid;
public enum Status {
CREATED, IN_PROGRESS, FINISHED, KILLED
}
public String getCmd()
{
return cmd;
}
public void setCmd(String cmd)
{
this.cmd = cmd;
}
public String getLog()
{
return log;
}
public void setLog(String log)
{
this.log = log;
}
public Long getUserId()
{
return userId;
}
public void setUserId(Long userId)
{
this.userId = userId;
}
public Status getStatus()
{
return status;
}
public void setStatus(Status status)
{
this.status = status;
}
public Integer getPid()
{
return pid;
}
public void setPid(Integer pid)
{
this.pid = pid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy