Package org.mule.module.ibeans.config

Source Code of org.mule.module.ibeans.config.IBeansLoader

/*
* $Id: IBeansLoader.java 19800 2010-09-30 21:31:55Z rossmason $
* -------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.module.ibeans.config;

import org.mule.api.MuleContext;
import org.mule.api.MuleRuntimeException;
import org.mule.api.config.ConfigurationException;
import org.mule.api.context.MuleContextAware;

/**
* Responsible for discovering and loading available iBeans into the registry.
*/
public class IBeansLoader implements MuleContextAware
{
    public static final String SCAN_PACKAGES_PROPERTY = "org.mule.scan";

    //Note that the space after the comma denotes that the classes path itself should be scanned.  I don't know what this is
    //required when scanning for resources
    private static final String DEFAULT_BASEPATH = "org.mule, ";

    public void setMuleContext(MuleContext context)
    {
        //Don't like this but without it the user must explicitly configure this builder at start up
        String scanPackages = System.getProperty(SCAN_PACKAGES_PROPERTY, DEFAULT_BASEPATH);
        String[] paths = scanPackages.split(",");
        IBeanHolderConfigurationBuilder builder = new IBeanHolderConfigurationBuilder(paths);
        try
        {
            builder.configure(context);
        }
        catch (ConfigurationException e)
        {
            throw new MuleRuntimeException(e);
        }
    }
}
TOP

Related Classes of org.mule.module.ibeans.config.IBeansLoader

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.