All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.narayana.jta.runtime.graal.PropertiesFactorySubstitution Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.quarkus.narayana.jta.runtime.graal;

import java.util.Properties;

import com.arjuna.common.util.propertyservice.PropertiesFactory;
import com.oracle.svm.core.annotate.Substitute;
import com.oracle.svm.core.annotate.TargetClass;

import io.quarkus.narayana.jta.runtime.NarayanaJtaRecorder;

@TargetClass(PropertiesFactory.class)
final class PropertiesFactorySubstitution {

    @Substitute
    public static Properties getDefaultProperties() {
        return NarayanaJtaRecorder.getDefaultProperties();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy