/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
/**
* An implementation of th <code>EJBServices</code> Weld SPI. The Weld
* implementation uses this SPI to resolve EJB and register CDI Interceptors
* for EJBs.
*/
{
habitat = h;
}
/**
* Request a reference to an EJB session object from the container. If the
* EJB being resolved is a stateful session bean, the container should ensure
* the session bean is created before this method returns.
*
* @param ejbDescriptor the ejb to resolve
* @return a reference to the session object
*/
// All we need to do is create a reference based on one of the beans'
// client views, so just choose one and get its corresponding portable
// JNDI name.
if( globalJndiName != null ) {
try {
} catch(NamingException ne) {
throw new IllegalStateException("Error resolving session object reference for ejb name " +
}
} else {
throw new IllegalArgumentException("Not enough type information to resolve ejb for " +
}
return sessionObj;
}
if( sessionDesc.isLocalBean() ) {
}
}
public void registerInterceptors(EjbDescriptor<?> ejbDesc, InterceptorBindings interceptorBindings) {
// Work around bug that ejbDesc might be internal 299 descriptor.
}
com.sun.enterprise.deployment.EjbDescriptor glassfishEjbDesc = (com.sun.enterprise.deployment.EjbDescriptor)
// Convert to EjbInterceptor
// First create master list of EjbInterceptor descriptors
// Add interceptor to list all interceptors in ejb descriptor
}
}
// Create ordered list of EjbInterceptor for each lifecycle interception type and append to
// EjbDescriptor. 299 interceptors are always added after any interceptors defined via
// EJB-defined metadata, so the ordering will be correct since all the ejb interceptors
// have already been processed.
// 299-provided list is organized as per-method. Append each method chain to EjbDescriptor.
try {
} catch(ClassNotFoundException cnfe) {
cnfe);
}
}
return;
}
if( lifecycleList == null ) {
return ejbInterceptorList;
}
switch(interceptionType) {
case POST_CONSTRUCT :
break;
case PRE_DESTROY :
break;
case PRE_PASSIVATE :
break;
case POST_ACTIVATE :
break;
case AROUND_INVOKE :
break;
case AROUND_TIMEOUT :
break;
default :
throw new IllegalArgumentException("Invalid lifecycle interception type " +
}
}
return ejbInterceptorList;
}
switch(interceptionType) {
case POST_CONSTRUCT :
return PostConstruct.class;
case PRE_DESTROY :
return PreDestroy.class;
case PRE_PASSIVATE :
return PrePassivate.class;
case POST_ACTIVATE :
return PostActivate.class;
case AROUND_INVOKE :
return AroundInvoke.class;
case AROUND_TIMEOUT :
return AroundTimeout.class;
}
throw new IllegalArgumentException("Invalid interception type " +
}
}
}
throw new IllegalStateException("Interceptor Class " + interceptorClass + " has no method annotated with " +
}
ejbInt.setCDIInterceptor(true);
return ejbInt;
}
private EjbInterceptor getEjbInterceptorByClassName(Set<EjbInterceptor> allInterceptors, String name) {
return next;
}
}
}
public void cleanup() {
//Nothing to do here.
}
}