use of com.emc.aix.AixSystem in project coprhd-controller by CoprHD.
the class AixHostDiscoveryAdapter method getVersion.
protected AixVersion getVersion(Host host) {
AixSystem cli = getCli(host);
AixVersion version = cli.getVersion();
if (version == null) {
error("Could not determine version of aix host %s", host.getLabel());
return new AixVersion("");
} else {
return version;
}
}
Aggregations