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

com.github.fonimus.ssh.shell.postprocess.PostProcessorObject Maven / Gradle / Ivy

The newest version!
package com.github.fonimus.ssh.shell.postprocess;

import java.util.List;

/**
 * Post processor object
 */
public class PostProcessorObject {

	private String name;

	private List parameters;

	public PostProcessorObject(String name, List parameters) {
		this.name = name;
		this.parameters = parameters;
	}

	public String getName() {
		return name;
	}

	public List getParameters() {
		return parameters;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy