Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02

weblogic.management.runtime
Interface JTATransaction

All Superinterfaces:
Serializable

public interface JTATransaction
extends Serializable

This class represents information about a live transaction.


Method Summary
 String getCoordinatorURL()
          The URL of the coordinating server.
 String getName()
          The name of the transaction as defined by the application that started the transaction.
 Map getResourceNamesAndStatus()
          The collection of participating resource names and their status for the transaction.
 int getSecondsActiveCurrentCount()
          The time in seconds for which the transaction has been active.
 String[] getServers()
          The servers that participate in the transaction.
 Map getServersAndStatus()
          The collection of participating servers and their status for the transaction.
 String getStatus()
          The current status of the transaction.
 Map getUserProperties()
          The user-defined properties associated with the transaction.
 Xid getXid()
          The transaction ID assigned by the transaction manager.
 

Method Detail

getName

String getName()

The name of the transaction as defined by the application that started the transaction.

Returns:
The name value

getXid

Xid getXid()

The transaction ID assigned by the transaction manager.

Returns:
The xid value

getStatus

String getStatus()

The current status of the transaction.

Returns:
The status value

getUserProperties

Map getUserProperties()

The user-defined properties associated with the transaction.

Returns:
The userProperties value

getSecondsActiveCurrentCount

int getSecondsActiveCurrentCount()

The time in seconds for which the transaction has been active.

Returns:
The secondsActiveCurrentCount value

getServers

String[] getServers()

The servers that participate in the transaction.

Returns:
The servers value

getResourceNamesAndStatus

Map getResourceNamesAndStatus()

The collection of participating resource names and their status for the transaction.

Returns:
The resourceNamesAndStatus value

getCoordinatorURL

String getCoordinatorURL()

The URL of the coordinating server.

Returns:
The coordinatorURL value

getServersAndStatus

Map getServersAndStatus()

The collection of participating servers and their status for the transaction. The server name is qualified with the server's domain name.

Returns:
The serversAndStatus value

Copyright 1996, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.1.3)

Part Number E41849-02