package org.gcube.dataanalysis.dataminer.poolmanager.ansible.model; ***REMOVED*** import java.util.Vector; public class Playbook { private String hostGroupName; private List roles; private String remote_user; public Playbook() { this.roles = new Vector<>(); ***REMOVED*** public void addRole(String role) { roles.add(role); ***REMOVED*** public void applyTo(String hostGroupName) { this.hostGroupName = hostGroupName; ***REMOVED*** public String getHostGroupName() { return hostGroupName; ***REMOVED*** public List getRoles() { return new Vector<>(roles); ***REMOVED*** public String getRemote_user() { return remote_user; ***REMOVED*** public void setRemote_user(String remote_user) { this.remote_user = remote_user; ***REMOVED*** public void setHostGroupName(String hostGroupName) { this.hostGroupName = hostGroupName; ***REMOVED*** public void setRoles(List roles) { this.roles = roles; ***REMOVED*** ***REMOVED***