javax.xml.xquery
Class XQConnectionEvent
java.lang.Object
java.util.EventObject
javax.xml.xquery.XQConnectionEvent
- All Implemented Interfaces:
- Serializable
public class XQConnectionEvent
- extends 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. The XQConnectionEvent
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
XQConnectionEvent
public XQConnectionEvent(PooledXQConnection con)
- Constructs an
XQConnectionEvent
object initialized with
the given PooledXQConnection
object. XQException
defaults to null
.
- Parameters:
con
- the pooled connection that is the source of the event
XQConnectionEvent
public XQConnectionEvent(PooledXQConnection con,
XQException ex)
- Constructs an
XQConnectionEvent
object initialized with
the given PooledXQConnection
object and
XQException
object.
- Parameters:
con
- the pooled connection that is the source of the eventex
- the XQException to be thrown to the application
getXQException
public XQException getXQException()
- Retrieves the
XQException
for this
XQConnectionEvent
object.
- Returns:
- the
XQException
to be thrown or null
Copyright (c) 2004-2011 Saxonica Limited. All rights reserved.