blob: 10870d1734dd9d167844085da4c7b50eed31a8f8 [file] [log] [blame]
/*
* Copyright (c) 2008, Rickard Öberg. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.zest.library.spring.importer;
import org.apache.zest.api.common.Visibility;
import org.apache.zest.bootstrap.Assembler;
import org.apache.zest.bootstrap.AssemblyException;
import org.apache.zest.bootstrap.ModuleAssembly;
import org.springframework.context.ApplicationContext;
/**
* Imports all services in the given Spring ApplicationContext into a module.
*/
public class SpringImporterAssembler
implements Assembler
{
private ApplicationContext context;
private Visibility defaultVisibility;
/**
* Import all beans from the given ApplicationContext as services in Zest,
* using Module as Visibility.
*
* @param context the Spring ApplicationContext
*/
public SpringImporterAssembler( ApplicationContext context )
{
this( context, Visibility.module );
}
/**
* Import all beans from the given ApplicationContext as services in Zest,
* using the specified Visibility level.
*
* @param context the Spring ApplicationContext
* @param defaultVisibility the visibility level for the imported services
*/
public SpringImporterAssembler( ApplicationContext context, Visibility defaultVisibility )
{
this.context = context;
this.defaultVisibility = defaultVisibility;
}
@Override
public void assemble( ModuleAssembly module ) throws AssemblyException
{
// Register all Spring beans as services
String[] names = context.getBeanDefinitionNames();
for( String name : names )
{
Class serviceType = context.getType( name );
module.
importedServices( serviceType ).
importedBy( SpringImporter.class ).
identifiedBy( name ).
setMetaInfo( context ).
visibleIn( defaultVisibility );
}
}
}