org.apache.webbeans.spi.plugins.OpenWebBeansEjbPlugin 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.spi.plugins;
import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.ProcessAnnotatedType;
import java.lang.reflect.Method;
/**
* Session bean related plugin contract.
*
* @version $Rev$ $Date$
*/
public interface OpenWebBeansEjbPlugin extends OpenWebBeansPlugin
{
/**
* Returns true if class is an session bean class false otherwise
*
* @param clazz class definition
* @return true if class is an ejb class false otherwise
*/
public boolean isSessionBean(Class> clazz);
/**
* return true is clazz is an impl class or business interface of an EJB
*
* @param clazz class definition
* @return true is clazz denotes an EJB
*/
public boolean isNewSessionBean(Class> clazz);
/**
* Configures session bean and adds it into the container.
*
* @param clazz session bean class
* @param processAnnotateTypeEvent process annotated type event
*/
public Bean defineSessionBean(Class clazz, ProcessAnnotatedType processAnnotateTypeEvent);
public Bean defineNewSessionBean(Class clazz);
/**
* Returns true if given class is singleton session bean, false otherwise.
*
* @param clazz session bean class
* @return true if given class is singleton session bean, false otherwise
*/
public boolean isSingletonBean(Class> clazz);
/**
* Returns true if given class is stateless session bean, false otherwise.
*
* @param clazz session bean class
* @return true if given class is singleton session bean, false otherwise
*/
public boolean isStatelessBean(Class> clazz);
/**
* Returns true if given class is stateful session bean, false otherwise.
*
* @param clazz session bean class
* @return true if given class is singleton session bean, false otherwise
*/
public boolean isStatefulBean(Class> clazz);
/**
* Returns session bean proxy.
*
* @param bean session bean
* @param iface interface
* @return session bean proxy
*/
public Object getSessionBeanProxy(Bean> bean, Class> iface, CreationalContext> creationalContext);
Method resolveViewMethod(Bean> component, Method declaredMethod);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy