com.emc.vipr.model.sys.healthmonitor.DiagTest Maven / Gradle / Ivy
/*
* Copyright (c) 2013 EMC Corporation
* All Rights Reserved
*/
package com.emc.vipr.model.sys.healthmonitor;
import com.emc.vipr.model.sys.healthmonitor.HealthMonitorConstants;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList;
import java.util.List;
/**
* Represents test name, status and its details that are returned by diagtool.
*/
@XmlRootElement(name = "test")
public class DiagTest {
private String name;
private String status;
private List testParams;
public DiagTest() {
this.name = HealthMonitorConstants.DIAG_UNKNOWN;
}
public DiagTest(String name, String status) {
this.name = name;
this.status = status;
}
public DiagTest(String name, String status, List testParams) {
this.name = name;
this.status = status;
this.testParams = testParams;
}
@XmlElement(name = "name")
public String getName() {
return name;
}
@XmlElement(name = "status")
public String getStatus() {
return status;
}
@XmlElementWrapper(name = "params")
@XmlElement(name = "param")
public List getTestParams() {
if (testParams == null) {
testParams = new ArrayList();
}
return testParams;
}
public void setName(String name) {
this.name = name;
}
public void setStatus(String status) {
this.status = status;
}
public void setTestParams(List testParams) {
this.testParams = testParams;
}
@Override
public String toString() {
if (name.equals("EMC upgrade repository") && status.equals("CONFIGURED,UNREACHABLE") && testParams != null && !testParams.isEmpty()) {
return name
+ ": ["
+ status
+ "]."
+ " Details: Unable to reach the update repository, please verify ViPR's Internet connection and check if the repository URL "
+ testParams.get(0).getValue() + " is correct.";
}
StringBuffer sb = new StringBuffer();
if (testParams != null && !testParams.isEmpty()) {
for (TestParam param : testParams) {
sb.append(param + ", ");
}
}
return name + ": [" + status + "]." + (sb.length() > 0 ? "Details: " + sb.toString()
.substring(0, sb.length() - 2) : "");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy