blob: bf7c7fb9695a35e4ddb42f8ae3785bb67415e95c [file] [log] [blame]
/*
* Copyright 2004 The Apache Software Foundation.
*
* 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 org.apache.kandula.initiator;
import org.apache.kandula.Status;
public class CompletionCallback {
private InitiatorContext initiatorTransaction;
private int status = Status.CoordinatorStatus.STATUS_NONE;
private boolean complete = false;
private Exception e;
public CompletionCallback(InitiatorContext initiatorTransaction) {
super();
this.initiatorTransaction = initiatorTransaction;
}
public boolean isComplete() {
return complete;
}
public int getResult() throws Exception
{
if (complete)
{
if (e!=null)
{
throw e;
}else
{
return status;
}
}
return -1;
}
public void setComplete(boolean complete) {
this.complete = complete;
}
public void setError(Exception e) {
this.e = e;
}
public void setStatus(int status)
{
this.status = status;
initiatorTransaction.setStatus(status);
}
}