com.alanbuttars.commons.cli.process.ProcessStreamResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-cli Show documentation
Show all versions of commons-cli Show documentation
Commons CLI is an API for simplifying the deployment and evaluation of command line processes.
The newest version!
/*
* Copyright (C) Alan Buttars
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.alanbuttars.commons.cli.process;
import java.io.InputStream;
import com.alanbuttars.commons.cli.util.EvaluationResult;
/**
* Simple POJO containing the results of an {@link InputStream} being consumed via {@link ProcessStreamReaderTest}.
*
* @author Alan Buttars
*
*/
class ProcessStreamResult extends EvaluationResult {
private StringBuilder stream;
private boolean interrupted;
private Exception exception;
public ProcessStreamResult() {
this.stream = new StringBuilder();
}
public String getStream() {
return stream.toString();
}
public void appendToStream(String line) {
this.stream.append(line).append("\n");
}
public boolean interrupted() {
return interrupted;
}
public void setInterrupted(boolean interrupted) {
this.interrupted = interrupted;
}
public Exception getException() {
return exception;
}
public void setException(Exception exception) {
this.exception = exception;
}
public boolean failedWithoutException() {
return failed() && exception == null;
}
}