use of com.sequenceiq.freeipa.client.model.Group in project cloudbreak by hortonworks.
the class GroupAddResponse method handleInternal.
@Override
protected Group handleInternal(List<CloudVmMetaDataStatus> metadatas, String body) {
Group group = new Group();
group.setCn("admins");
group.setMemberUser(List.of("admin"));
return group;
}
Aggregations