use of org.ovirt.engine.api.model.Options in project ovirt-engine by oVirt.
the class V3PowerManagementInAdapter method adapt.
@Override
public PowerManagement adapt(V3PowerManagement from) {
PowerManagement to = new PowerManagement();
if (from.isSetAddress()) {
to.setAddress(from.getAddress());
}
if (from.isSetAgents()) {
to.setAgents(new Agents());
to.getAgents().getAgents().addAll(adaptIn(from.getAgents().getAgents()));
}
if (from.isSetAutomaticPmEnabled()) {
to.setAutomaticPmEnabled(from.isAutomaticPmEnabled());
}
if (from.isSetEnabled()) {
to.setEnabled(from.isEnabled());
}
if (from.isSetKdumpDetection()) {
to.setKdumpDetection(from.isKdumpDetection());
}
if (from.isSetOptions()) {
to.setOptions(new Options());
to.getOptions().getOptions().addAll(adaptIn(from.getOptions().getOptions()));
}
if (from.isSetPassword()) {
to.setPassword(from.getPassword());
}
if (from.isSetPmProxies()) {
to.setPmProxies(new PmProxies());
to.getPmProxies().getPmProxies().addAll(adaptIn(from.getPmProxies().getPmProxy()));
}
if (from.isSetStatus() && from.getStatus().isSetState()) {
to.setStatus(PowerManagementStatus.fromValue(from.getStatus().getState()));
}
if (from.isSetType()) {
to.setType(from.getType());
}
if (from.isSetUsername()) {
to.setUsername(from.getUsername());
}
return to;
}
Aggregations