Search in sources :

Example 1 with V3Methods

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

the class V3SsoOutAdapter method adapt.

@Override
public V3Sso adapt(Sso from) {
    V3Sso to = new V3Sso();
    if (from.isSetMethods()) {
        to.setMethods(new V3Methods());
        to.getMethods().getMethods().addAll(adaptOut(from.getMethods().getMethods()));
    }
    return to;
}
Also used : V3Methods(org.ovirt.engine.api.v3.types.V3Methods) V3Sso(org.ovirt.engine.api.v3.types.V3Sso)

Aggregations

V3Methods (org.ovirt.engine.api.v3.types.V3Methods)1 V3Sso (org.ovirt.engine.api.v3.types.V3Sso)1