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

com.arjuna.mwlabs.wst.ba.local.BusinessActivityManagerImple Maven / Gradle / Ivy

/*
 * JBoss, Home of Professional Open Source
 * Copyright 2006, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. 
 * See the copyright.txt in the distribution for a full listing 
 * of individual contributors.
 * This copyrighted material is made available to anyone wishing to use,
 * modify, copy, or redistribute it subject to the terms and conditions
 * of the GNU Lesser General Public License, v. 2.1.
 * This program is distributed in the hope that it will be useful, but WITHOUT A
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
 * You should have received a copy of the GNU Lesser General Public License,
 * v.2.1 along with this distribution; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA  02110-1301, USA.
 * 
 * (C) 2005-2006,
 * @author JBoss Inc.
 */
/*
 * Copyright (C) 2003,
 *
 * Arjuna Technologies Limited,
 * Newcastle upon Tyne,
 * Tyne and Wear,
 * UK.
 *
 * $Id: BusinessActivityManagerImple.java,v 1.3.8.1 2005/11/22 10:36:16 kconner Exp $
 */

package com.arjuna.mwlabs.wst.ba.local;

import com.arjuna.mw.wst.BusinessActivityManager;
import com.arjuna.mw.wst.TxContext;
import com.arjuna.webservices.wsba.BusinessActivityConstants;
import com.arjuna.wsc.AlreadyRegisteredException;
import com.arjuna.wst.BusinessAgreementWithCoordinatorCompletionParticipant;
import com.arjuna.wst.BusinessAgreementWithParticipantCompletionParticipant;
import com.arjuna.wst.SystemException;
import com.arjuna.wst.UnknownTransactionException;
import com.arjuna.wst.WrongStateException;

/**
 * This is the interface that the core exposes in order to allow different
 * types of participants to be enrolled. The messaging layer continues to
 * work in terms of the registrar, but internally we map to one of these
 * methods.
 *
 * This could also be the interface that high-level users see (e.g., at the
 * application Web Service).
 */

public class BusinessActivityManagerImple extends BusinessActivityManager
{

    public BusinessActivityManagerImple ()
    {
	_contextManager = ContextManager.contextManager();
	_contextManager.initialise(UserBusinessActivityImple._factory);
    }
	
    public com.arjuna.wst.BAParticipantManager enlistForBusinessAgreementWithParticipantCompletion (BusinessAgreementWithParticipantCompletionParticipant pzp, String id) throws WrongStateException, UnknownTransactionException, AlreadyRegisteredException, SystemException
    {
	try
	{
	    _registrar.register(pzp, BusinessActivityConstants.WSBA_SUB_PROTOCOL_PARTICIPANT_COMPLETION, id);

	    return new BAParticipantManagerImple(id);
	}
	catch (com.arjuna.wsc.InvalidProtocolException ex)
	{
	    throw new SystemException(ex.toString());
	}
	catch (com.arjuna.wsc.InvalidStateException ex)
	{
	    throw new WrongStateException();
	}
	catch (com.arjuna.wsc.NoActivityException ex)
	{
	    throw new UnknownTransactionException();
	}
    }

    public com.arjuna.wst.BAParticipantManager enlistForBusinessAgreementWithCoordinatorCompletion (BusinessAgreementWithCoordinatorCompletionParticipant tpp, String id) throws WrongStateException, UnknownTransactionException, AlreadyRegisteredException, SystemException
    {
	try
	{
	    _registrar.register(tpp, BusinessActivityConstants.WSBA_SUB_PROTOCOL_COORDINATOR_COMPLETION, id);

	    return new BAParticipantManagerImple(id);
	}
	catch (com.arjuna.wsc.InvalidProtocolException ex)
	{
	    ex.printStackTrace();
	    
	    throw new SystemException(ex.toString());
	}
	catch (com.arjuna.wsc.InvalidStateException ex)
	{
	    throw new WrongStateException();
	}
	catch (com.arjuna.wsc.NoActivityException ex)
	{
	    throw new UnknownTransactionException();
	}
    }

    public void resume (TxContext tx) throws UnknownTransactionException, SystemException
    {
	_contextManager.resume(tx);
    }
    
    public TxContext suspend () throws SystemException
    {
	return _contextManager.suspend();
    }

    public TxContext currentTransaction () throws SystemException
    {
	return _contextManager.currentTransaction();
    }

    final LocalRegistrarImple getRegistrar ()
    {
	return _registrar;
    }

    private ContextManager _contextManager = null;
    
    private static LocalRegistrarImple _registrar = new LocalRegistrarImple();
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy