Example usage for org.springframework.jndi JndiObjectFactoryBean subclass-usage

List of usage examples for org.springframework.jndi JndiObjectFactoryBean subclass-usage

Introduction

In this page you can find the example usage for org.springframework.jndi JndiObjectFactoryBean subclass-usage.

Usage

From source file org.alfresco.config.JndiObjectFactoryBean.java

/**
 * An extended version of JndiObjectFactoryBean that actually tests a JNDI data source before falling back to its
 * default object. Allows continued backward compatibility with old-style datasource configuration.
 * 
 * @author dward
 */

From source file net.sourceforge.vulcan.spring.mbean.MbeanServerLocator.java

public class MbeanServerLocator extends JndiObjectFactoryBean {
    Object mbeanServer;

    @Override
    public void afterPropertiesSet() throws NamingException {
        try {

From source file com.edgenius.core.service.impl.NullableJndiObjectFactoryBean.java

/**
 * This class allow lookup a object that is optional configurable. It will return null by getObject() if input JNDIname is empty.
 * Sample scenario: See JavaMail setting - user can setup JNDI or directly SMTP host.  If JNDI name is empty, then JavaMail 
 * will use host rather than throw exception.
 *
 * @author Dapeng.Ni

From source file de.escidoc.core.admin.common.util.spring.RemoteJndiLocator.java

/**
 * Customized Proxy factory Bean for the Remote and Stateless EJB lookup.
 * 
 * @author Michael Hoppe
 * 
 */