package com.thespeechcorporation.plugin.maven; public class Data { private String source = null; private String destination = null; private String type = null; public String getSource() { return source; } public void setSource(String source) { this.source = source; } public String getDestination() { return destination; } public void setDestination(String destination) { this.destination = destination; } public String getType() { return type; } public void setType(String type) { this.type = type; } }