All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.narayana.compensations.impl.remote.RemoteParticipantManager Maven / Gradle / Ivy

There is a newer version: 7.1.0.Final
Show newest version
package org.jboss.narayana.compensations.impl.remote;

import com.arjuna.wst.SystemException;
import com.arjuna.wst.UnknownTransactionException;
import com.arjuna.wst.WrongStateException;
import com.arjuna.wst11.BAParticipantManager;
import org.jboss.narayana.compensations.impl.ParticipantManager;

import javax.xml.namespace.QName;

/**
 * @author [email protected] 19/04/2014
 */
public class RemoteParticipantManager implements ParticipantManager {

    BAParticipantManager baParticipantManager;

    public RemoteParticipantManager(BAParticipantManager baParticipantManager) {

        this.baParticipantManager = baParticipantManager;
    }

    @Override
    public void exit() throws WrongStateException, UnknownTransactionException, SystemException {

        baParticipantManager.exit();
    }

    @Override
    public void completed() throws WrongStateException, UnknownTransactionException, SystemException {

        baParticipantManager.completed();
    }

    @Override
    public void cannotComplete() throws WrongStateException, UnknownTransactionException, SystemException {

        baParticipantManager.cannotComplete();
    }

    @Override
    public void fail(QName exceptionIdentifier) throws SystemException {

        baParticipantManager.fail(exceptionIdentifier);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy