All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.raml.ramltopojo.PluginDef Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
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 +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy