package org.gcube.dataanalysis.dataminer.poolmanager.ansible.model; public class RoleFile { /** * The path to the file, starting from the role root */ private String path; /** * The name of the task file */ private String name; /** * The content of the task file * @return */ private String content; public RoleFile() { ***REMOVED*** public RoleFile(String name, String content) { this(); this.setName(name); this.setContent(content); ***REMOVED*** public String getName() { return name; ***REMOVED*** public void setName(String name) { this.name = name; ***REMOVED*** public String getContent() { return content; ***REMOVED*** public void setContent(String content) { this.content = content; ***REMOVED*** public String getPath() { return path; ***REMOVED*** public void setPath(String path) { this.path = path; ***REMOVED*** ***REMOVED***