Package javax.xml.xquery
Class XQConnectionEvent
- java.lang.Object
-
- java.util.EventObject
-
- javax.xml.xquery.XQConnectionEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class XQConnectionEvent extends java.util.EventObject
An event object that provides information about the source of a connection-related event.XQConnectionEvent
objects are generated when an application closes a pooled connection and when an error occurs. TheXQConnectionEvent
object contains the folowing information:- The pooled connection closed by the application
- In the case of an error, the
XQException
to be thrown to the application
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XQConnectionEvent(PooledXQConnection con)
Constructs anXQConnectionEvent
object initialized with the givenPooledXQConnection
object.XQConnectionEvent(PooledXQConnection con, XQException ex)
Constructs anXQConnectionEvent
object initialized with the givenPooledXQConnection
object andXQException
object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XQException
getXQException()
Retrieves theXQException
for thisXQConnectionEvent
object.
-
-
-
Constructor Detail
-
XQConnectionEvent
public XQConnectionEvent(PooledXQConnection con)
Constructs anXQConnectionEvent
object initialized with the givenPooledXQConnection
object.XQException
defaults tonull
.- Parameters:
con
- the pooled connection that is the source of the event
-
XQConnectionEvent
public XQConnectionEvent(PooledXQConnection con, XQException ex)
Constructs anXQConnectionEvent
object initialized with the givenPooledXQConnection
object andXQException
object.- Parameters:
con
- the pooled connection that is the source of the eventex
- the XQException to be thrown to the application
-
-
Method Detail
-
getXQException
public XQException getXQException()
Retrieves theXQException
for thisXQConnectionEvent
object.- Returns:
- the
XQException
to be thrown ornull
-
-