org.raml.ramltopojo.PluginDef Maven / Gradle / Ivy
package org.raml.ramltopojo;
import java.util.List;
/**
* Created. There, you have it.
*/
public class PluginDef {
private final String pluginName;
private final List arguments;
public PluginDef(String pluginName, List arguments) {
this.pluginName = pluginName;
this.arguments = arguments;
}
public String getPluginName() {
return pluginName;
}
public List getArguments() {
return arguments;
}
@Override
public String toString() {
return "PluginDef{" +
"pluginName='" + pluginName + '\'' +
", arguments=" + arguments +
'}';
}
}