com.cognifide.aet.communication.api.ProcessingError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of communication-api Show documentation
Show all versions of communication-api Show documentation
API for communication between system elements - runners and workers
/**
* Automated Exploratory Tests
*
* Copyright (C) 2013 Cognifide Limited
*
* 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.cognifide.aet.communication.api;
import com.google.common.base.Objects;
import java.io.Serializable;
/**
* Error that may happen during test processing. Contains description and phase of processing.
*
* @author lukasz.wieczorek
*/
public final class ProcessingError implements Serializable {
private static final long serialVersionUID = 3316639542860063365L;
private final String description;
private final Phase phase;
public ProcessingError(String description, Phase phase) {
this.description = description;
this.phase = phase;
}
public static ProcessingError comparingError(String description) {
return new ProcessingError(description, Phase.COMPARING);
}
public static ProcessingError collectingError(String description) {
return new ProcessingError(description, Phase.COLLECTING);
}
public static ProcessingError reportingError(String description) {
return new ProcessingError(description, Phase.REPORTING);
}
/**
* @return error description.
*/
public String getDescription() {
return description;
}
/**
* @return phase during which error occurred.
*/
public Phase getPhase() {
return phase;
}
/**
* Processing phases.
*/
public enum Phase {
COLLECTING, COMPARING, REPORTING
}
@Override
public String toString() {
return Objects.toStringHelper(this).add("phase", phase).add("description", description).toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy