blob: 86ddcb9596eabee73a45f4e73925ba7495845863 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.internal.eis.adapters.aq;
import jakarta.resource.*;
import jakarta.resource.cci.*;
/**
* Defines the meta-data for the Oracle AQ adaptor
*
* @author James
* @since OracleAS TopLink 10<i>g</i> (10.0.3)
*/
public class AQConnectionMetaData implements ConnectionMetaData {
protected AQConnection connection;
/**
* Default constructor.
*/
public AQConnectionMetaData(AQConnection connection) {
this.connection = connection;
}
@Override
public String getEISProductName() throws ResourceException {
try {
return this.connection.getDatabaseConnection().getMetaData().getDatabaseProductName();
} catch (Exception exception) {
throw new ResourceException(exception.toString());
}
}
@Override
public String getEISProductVersion() throws ResourceException {
try {
return connection.getDatabaseConnection().getMetaData().getDatabaseProductVersion();
} catch (Exception exception) {
throw new ResourceException(exception.toString());
}
}
@Override
public String getUserName() throws ResourceException {
try {
return this.connection.getDatabaseConnection().getMetaData().getUserName();
} catch (Exception exception) {
throw new ResourceException(exception.toString());
}
}
}