blob: 2d4e28e99aa58fd2d139b08acc8b2c249e05ee8f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.myfaces.extensions.scripting.cdi.api;
import javax.enterprise.inject.spi.BeanManager;
import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.http.HttpSession;
/**
* <p>A CdiTestContainer provides access to an underlying JSR-299 (CDI)
* Container. It allows starting and stopping the container and to start
* and stop the built-in contexts of that container.</p>
*
* <p>The intention is to provide a portable control for CDI containers in
* Java SE environments. It is <b>not</b> intended for environments in which the
* CDI container is under full control of the server already, e.g. in
* EE-containers.</p>
*/
public interface CdiContainer
{
/**
* Booting the CdiTestContainer will scan the whole classpath
* for Beans and extensions available.
* The container might throw a DeploymentException or similar on startup.
*
* @param context standard servlet context event
*/
void boot(ServletContextEvent context);
/**
* This will shutdown the underlying CDI container.
*
* @param context standard servlet context
*/
void shutdown(ServletContextEvent context);
/**
* @return the {@link javax.enterprise.inject.spi.BeanManager} or <code>null</code> it not available
*/
BeanManager getBeanManager();
/**
* @param context standard servlet context
* @param session standard htpp session
*
* @return ContextControl for the started Container. <code>null</code> if the container is not yet started
*/
ContextControl getContextControl(ServletContext context, HttpSession session);
}