
javax.resource.spi.ConnectionEvent Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 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.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package javax.resource.spi;
import javax.resource.ResourceException;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.ObjectStreamField;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.EventObject;
/** The ConnectionEvent class provides information about the source of
* a connection related event.A ConnectionEvent instance contains the
* following information:
*
* - Type of the connection event
*
- ManagedConnection instance that generated the connection event.
* A ManagedConnection instance is returned from the method
* ConnectionEvent.getSource.
*
- Connection handle associated with the ManagedConnection instance;
* required for the CONNECTION_CLOSED event and optional for the
* other event types.
*
- Optionally, an exception indicating the connection related error.
* Note that exception is used for CONNECTION_ERROR_OCCURRED.
*
*
* This class defines following types of event notifications:
*
* - CONNECTION_CLOSED
*
- LOCAL_TRANSACTION_STARTED
*
- LOCAL_TRANSACTION_COMMITTED
*
- LOCAL_TRANSACTION_ROLLEDBACK
*
- CONNECTION_ERROR_OCCURRED
*
*
* @version 0.5
* @author Rahul Sharma
* @see javax.resource.spi.ConnectionEventListener
*/
public class ConnectionEvent extends java.util.EventObject {
/** Serial version uid */
private static final long serialVersionUID;
/** Persistence field information */
private static final ObjectStreamField[] serialPersistentFields;
private static final int ID_IDX = 0;
private static final int EXCEPTION_IDX = 1;
private static final int CONN_HANDLE_IDX = 2;
/** Event notification that an application component has closed the
* connection
**/
public static final int CONNECTION_CLOSED = 1;
/** Event notification that a Resource Manager Local Transaction was
* started on the connection
**/
public static final int LOCAL_TRANSACTION_STARTED = 2;
/** Event notification that a Resource Manager Local Transaction was
* committed on the connection
**/
public static final int LOCAL_TRANSACTION_COMMITTED = 3;
/** Event notification that a Resource Manager Local Transaction was
* rolled back on the connection
**/
public static final int LOCAL_TRANSACTION_ROLLEDBACK = 4;
/** Event notification that an error occurred on the connection.
* This event indicates that the ManagedConnection instance is
* now invalid and unusable.
**/
public static final int CONNECTION_ERROR_OCCURRED = 5;
/** Exception associated with the ConnectionEvent
* instance.
*
* @serial
**/
private Exception exception;
/** Type of the event
**/
protected int id;
private Object connectionHandle;
static {
Boolean legacy = (Boolean) AccessController.doPrivileged(new PrivilegedAction() {
public Boolean run() {
try {
if (System.getProperty("org.jboss.j2ee.LegacySerialization") != null)
return Boolean.TRUE;
} catch (Throwable ignored) {
// Ignore
}
return Boolean.FALSE;
}
});
if (Boolean.TRUE.equals(legacy)) {
serialVersionUID = 2776168349823367611L;
serialPersistentFields = new ObjectStreamField[]{
/** @serialField id int */
new ObjectStreamField("id", int.class),
/** @serialField e Exception */
new ObjectStreamField("e", Exception.class),
/** @serialField connectionHandle Object */
new ObjectStreamField("connectionHandle", Object.class)
};
} else {
serialVersionUID = 5611772461379563249L;
serialPersistentFields = new ObjectStreamField[]{
/** @serialField id int */
new ObjectStreamField("id", int.class),
/** @serialField exception Exception */
new ObjectStreamField("exception", Exception.class),
/** @serialField connectionHandle Object */
new ObjectStreamField("connectionHandle", Object.class)
};
}
}
/**
* Construct a ConnectionEvent object. Exception defaults to null.
*
* @param source ManagedConnection that is the
* source of the event
* @param eid type of the Connection event
*/
public ConnectionEvent(ManagedConnection source, int eid) {
super(source);
this.id = eid;
}
/**
* Construct a ConnectionEvent object.
*
* @param source ManagedConnection that is the
* source of the event
* @param exception exception about to be thrown to the application
* @param eid type of the Connection event
*/
public ConnectionEvent(ManagedConnection source, int eid,
Exception exception) {
super(source);
this.exception = exception;
this.id = eid;
}
/**Get the connection handle associated with the Managed
* Connection instance. Used for CONNECTION_CLOSED event.
*
* @return the connection handle. May be null
*/
public Object getConnectionHandle() {
return connectionHandle;
}
/**
* Set the connection handle. Used for CONNECTION_CLOSED event
*/
public void setConnectionHandle(Object connectionHandle) {
this.connectionHandle = connectionHandle;
}
/**
* Get the exception. May be null.
*
* @return the exception about to be thrown.
*/
public Exception getException() {
return exception;
}
/**
* Get the type of event
*/
public
int getId() {
return id;
}
/**
* Read object
* @param ois The object input stream
* @exception ClassNotFoundException If a class can not be found
* @exception IOException Thrown if an error occurs
*/
private void readObject(ObjectInputStream ois) throws ClassNotFoundException, IOException
{
ObjectInputStream.GetField fields = ois.readFields();
String name = serialPersistentFields[ID_IDX].getName();
this.id = fields.get(name, CONNECTION_ERROR_OCCURRED);
name = serialPersistentFields[EXCEPTION_IDX].getName();
this.exception = (Exception) fields.get(name, null);
name = serialPersistentFields[CONN_HANDLE_IDX].getName();
this.connectionHandle = fields.get(name, null);
}
/**
* Write object
* @param oos The object output stream
* @exception IOException Thrown if an error occurs
*/
private void writeObject(ObjectOutputStream oos) throws IOException
{
ObjectOutputStream.PutField fields = oos.putFields();
String name = serialPersistentFields[ID_IDX].getName();
fields.put(name, id);
name = serialPersistentFields[EXCEPTION_IDX].getName();
fields.put(name, exception);
name = serialPersistentFields[CONN_HANDLE_IDX].getName();
fields.put(name, connectionHandle);
oos.writeFields();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy