use of org.ovirt.engine.api.v3.types.V3EntityProfileDetail in project ovirt-engine by oVirt.
the class V3EntityProfileDetailInAdapter method adapt.
@Override
public EntityProfileDetail adapt(V3EntityProfileDetail from) {
EntityProfileDetail to = new EntityProfileDetail();
if (from.isSetProfileDetail()) {
to.setProfileDetails(new ProfileDetails());
to.getProfileDetails().getProfileDetails().addAll(adaptIn(from.getProfileDetail()));
}
return to;
}
Aggregations