blob: da96eafed11fbcfd06c8c142bde87fde9f1948ab [file] [log] [blame]
package org.apache.helix.messaging.handling;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import java.util.HashMap;
import java.util.Map;
public class HelixTaskResult {
private boolean _success;
private boolean _cancelled;
private String _message = "";
private String _info = "";
private Map<String, String> _taskResultMap = new HashMap<String, String>();
private boolean _interrupted = false;
Exception _exception = null;
private long _completeTime = -1;
public boolean isSuccess() {
return _success;
}
public boolean isInterrupted() {
return _interrupted;
}
public void setInterrupted(boolean interrupted) {
_interrupted = interrupted;
}
public boolean isCancelled() {
return _cancelled;
}
public void setCancelled(boolean cancelled) {
_cancelled = cancelled;
}
public void setSuccess(boolean success) {
this._success = success;
}
public String getMessage() {
return _message;
}
public void setMessage(String message) {
this._message = message;
}
public String getInfo() {
return _info;
}
public void setInfo(String info) {
_info = info;
}
public Map<String, String> getTaskResultMap() {
return _taskResultMap;
}
public void setException(Exception e) {
_exception = e;
}
public Exception getException() {
return _exception;
}
public long getCompleteTime() {
return _completeTime;
}
public void setCompleteTime(long completeTime) {
_completeTime = completeTime;
}
}