io.quarkus.jdbc.oracle.runtime.graal.OracleDatasourceSubstitutions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-jdbc-oracle Show documentation
Show all versions of quarkus-jdbc-oracle Show documentation
Connect to the Oracle database via JDBC
The newest version!
package io.quarkus.jdbc.oracle.runtime.graal;
import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;
@TargetClass(className = "oracle.jdbc.datasource.impl.OracleDataSource")
public final class OracleDatasourceSubstitutions {
@Substitute
public static void unregisterMBean() {
//No-op
}
@Substitute
public static void registerMBean() {
//No-op
}
}