javax.transaction

Interface UserTransaction


  • public interface UserTransaction
    The UserTransaction interface defines the methods that allow an application to explicitly manage transaction boundaries.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      void begin()
      Create a new transaction and associate it with the current thread.
      void commit()
      Complete the transaction associated with the current thread.
      int getStatus()
      Obtain the status of the transaction associated with the current thread.
      void rollback()
      Roll back the transaction associated with the current thread.
      void setRollbackOnly()
      Modify the transaction associated with the current thread such that the only possible outcome of the transaction is to roll back the transaction.
      void setTransactionTimeout(int seconds)
      Modify the timeout value that is associated with transactions started by the current thread with the begin method.

      Eerste pagina van API Java Inhoudsopgave Haut

    • Method Detail

      • begin

        void begin()
            throws NotSupportedException,
                   SystemException
        Create a new transaction and associate it with the current thread.
        Throws:
        NotSupportedException - Thrown if the thread is already associated with a transaction and the Transaction Manager implementation does not support nested transactions.
        SystemException - Thrown if the transaction manager encounters an unexpected error condition.
      • rollback

        void rollback()
               throws IllegalStateException,
                      SecurityException,
                      SystemException
        Roll back the transaction associated with the current thread. When this method completes, the thread is no longer associated with a transaction.
        Throws:
        SecurityException - Thrown to indicate that the thread is not allowed to roll back the transaction.
        IllegalStateException - Thrown if the current thread is not associated with a transaction.
        SystemException - Thrown if the transaction manager encounters an unexpected error condition.
      • setRollbackOnly

        void setRollbackOnly()
                      throws IllegalStateException,
                             SystemException
        Modify the transaction associated with the current thread such that the only possible outcome of the transaction is to roll back the transaction.
        Throws:
        IllegalStateException - Thrown if the current thread is not associated with a transaction.
        SystemException - Thrown if the transaction manager encounters an unexpected error condition.
      • getStatus

        int getStatus()
               throws SystemException
        Obtain the status of the transaction associated with the current thread.
        Returns:
        The transaction status. If no transaction is associated with the current thread, this method returns the Status.NoTransaction value.
        Throws:
        SystemException - Thrown if the transaction manager encounters an unexpected error condition.
      • setTransactionTimeout

        void setTransactionTimeout(int seconds)
                            throws SystemException
        Modify the timeout value that is associated with transactions started by the current thread with the begin method.

        If an application has not called this method, the transaction service uses some default value for the transaction timeout.

        Parameters:
        seconds - The value of the timeout in seconds. If the value is zero, the transaction service restores the default value. If the value is negative a SystemException is thrown.
        Throws:
        SystemException - Thrown if the transaction manager encounters an unexpected error condition.

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 11/06/2005 gemaakt, de laatste keer de 18/08/2025 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-javaee-rf-javax/transaction/UserTransaction.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Manuel PHP : https://docs.oracle.com, UserTransaction (Java(TM) EE 7 Specification APIs)

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur van deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.