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

net.n2oapp.framework.engine.ejb.EjbConfiguration Maven / Gradle / Ivy

There is a newer version: 7.4.18
Show newest version
package net.n2oapp.framework.engine.ejb;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import javax.naming.NamingException;

@Configuration
public class EjbConfiguration {
    @Bean
    public EjbInvocationEngine ejbInvocationEngine() {
        return new EjbInvocationEngine();
    }

    @Bean
    public EjbObjectLocator ejbObjectLocator() throws NamingException {
        return new EjbObjectLocator();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy