
org.rundeck.api.parser.ResponseParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rundeck-api-java-client Show documentation
Show all versions of rundeck-api-java-client Show documentation
Java client for the Rundeck REST API
package org.rundeck.api.parser;
import java.io.InputStream;
/**
* Parse inputstream to some content
*/
public interface ResponseParser {
/**
* Parse the given content
*
* @param response input
* @return any object holding the converted value
*/
T parseResponse(InputStream response);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy