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

org.eclipse.persistence.transaction.JTASynchronizationListener Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
/*
 * Copyright (c) 1998, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0,
 * or the Eclipse Distribution License v. 1.0 which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
 */

// Contributors:
//     Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.transaction;

import javax.transaction.Synchronization;

import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.internal.sessions.UnitOfWorkImpl;

/**
 * 

* Purpose: Synchronization object implementation for JTA 1.0 *

* Description: Instances of this class are registered against JTA 1.0 * transactions. This class may be subclassed to provide specialized behavior * for specific transaction implementations. Subclasses must implement the * newListener() method to return an instances of the listener subclass. * * @see JTATransactionController */ public class JTASynchronizationListener extends AbstractSynchronizationListener implements Synchronization, SynchronizationListenerFactory { /** * PUBLIC: * Used to create factory instances only. Use the "full-bodied" constructor * for creating proper listener instances. */ public JTASynchronizationListener() { super(); } /** * INTERNAL: * Constructor for creating listener instances (expects all required state info) */ public JTASynchronizationListener(UnitOfWorkImpl unitOfWork, AbstractSession session, Object transaction, AbstractTransactionController controller) { super(unitOfWork, session, transaction, controller); } /** * INTERNAL: * Create and return the Synchronization listener object that can be registered * to receive JTA transaction notification callbacks. */ public AbstractSynchronizationListener newSynchronizationListener(UnitOfWorkImpl unitOfWork, AbstractSession session, Object transaction, AbstractTransactionController controller) { return new JTASynchronizationListener(unitOfWork, session, transaction, controller); } /** * INTERNAL: * Called by the JTA transaction manager prior to the start of the * transaction completion process. * This call is executed in the same transaction context of the caller * who initiates the TransactionManager.commit, or the call is executed * with no transaction context if Transaction.commit is used. */ public void beforeCompletion() { super.beforeCompletion(); } /** * INTERNAL: * Called by the JTA transaction manager after the transaction is committed * or rolled back. This method executes without a transaction context. * * @param stat The status of the transaction completion. */ public void afterCompletion(int stat) { super.afterCompletion(Integer.valueOf(stat)); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy