package art.servers.gost.access.types.neural;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|
@JsonPropertyOrder
|
({
|
"Online",
|
"Image name",
|
"PID",
|
"Session name",
|
"Session number",
|
"Memory usage",
|
"Status",
|
"User name",
|
"CPU time",
|
"Window title"
|
})
|
|
|
public class NeuralStatusApplication
|
{
|
@JsonProperty("Online")
|
public boolean online = false;
|
|
@JsonProperty("Image name")
|
public String imageName = null;
|
|
@JsonProperty("PID")
|
public String pid = null;
|
|
@JsonProperty("Session name")
|
public String sessionName = null;
|
|
@JsonProperty("Session number")
|
public String sessionNumber = null;
|
|
@JsonProperty("Memory usage")
|
public String memoryUsage = null;
|
|
@JsonProperty("Status")
|
public String status = null;
|
|
@JsonProperty("User name")
|
public String userName = null;
|
|
@JsonProperty("CPU time")
|
public String cpuTime = null;
|
|
@JsonProperty("Window title")
|
public String windowTitle = null;
|
|
|
}
|