Search in sources :

Example 1 with V3PmProxies

use of org.ovirt.engine.api.v3.types.V3PmProxies in project ovirt-engine by oVirt.

the class V3PowerManagementOutAdapter method adapt.

@Override
public V3PowerManagement adapt(PowerManagement from) {
    V3PowerManagement to = new V3PowerManagement();
    if (from.isSetAddress()) {
        to.setAddress(from.getAddress());
    }
    if (from.isSetAgents()) {
        to.setAgents(new V3Agents());
        to.getAgents().getAgents().addAll(adaptOut(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 V3Options());
        to.getOptions().getOptions().addAll(adaptOut(from.getOptions().getOptions()));
    }
    if (from.isSetPassword()) {
        to.setPassword(from.getPassword());
    }
    if (from.isSetPmProxies()) {
        to.setPmProxies(new V3PmProxies());
        to.getPmProxies().getPmProxy().addAll(adaptOut(from.getPmProxies().getPmProxies()));
    }
    if (from.isSetStatus()) {
        V3Status status = new V3Status();
        status.setState(from.getStatus().value());
        to.setStatus(status);
    }
    if (from.isSetType()) {
        to.setType(from.getType());
    }
    if (from.isSetUsername()) {
        to.setUsername(from.getUsername());
    }
    return to;
}
Also used : V3PowerManagement(org.ovirt.engine.api.v3.types.V3PowerManagement) V3Agents(org.ovirt.engine.api.v3.types.V3Agents) V3PmProxies(org.ovirt.engine.api.v3.types.V3PmProxies) V3Options(org.ovirt.engine.api.v3.types.V3Options) V3Status(org.ovirt.engine.api.v3.types.V3Status)

Aggregations

V3Agents (org.ovirt.engine.api.v3.types.V3Agents)1 V3Options (org.ovirt.engine.api.v3.types.V3Options)1 V3PmProxies (org.ovirt.engine.api.v3.types.V3PmProxies)1 V3PowerManagement (org.ovirt.engine.api.v3.types.V3PowerManagement)1 V3Status (org.ovirt.engine.api.v3.types.V3Status)1