org.apache.webbeans.context.creational.CreationalContextFactory Maven / Gradle / Ivy
The newest version!
/*
* 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.webbeans.context.creational;
import javax.enterprise.context.spi.Contextual;
import javax.enterprise.context.spi.CreationalContext;
import org.apache.webbeans.config.WebBeansContext;
/**
* Factory for {@link CreationalContext} instances.
*
* @version $Rev: 1465432 $ $Date: 2013-04-07 19:26:47 +0200 (Sun, 07 Apr 2013) $
*
* @param contextual type info
*/
public final class CreationalContextFactory
{
private WebBeansContext webBeansContext;
/**
* Creates a new CreationalContextFactory
instance.
* @param webBeansContext
*/
public CreationalContextFactory(WebBeansContext webBeansContext)
{
this.webBeansContext = webBeansContext;
}
/**
* Returns a new creational context for given contextual.
*
* @param contextual contextual instance
* @return new creational context for given contextual
*/
public CreationalContextImpl getCreationalContext(Contextual contextual)
{
return new CreationalContextImpl(contextual, webBeansContext);
}
public CreationalContextImpl wrappedCreationalContext(CreationalContext creationalContext, Contextual contextual)
{
return new WrappedCreationalContext(contextual, creationalContext, webBeansContext);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy