org.glassfish.persistence.ejb.entitybean.container.EntityBeanLocalHomeImpl Maven / Gradle / Ivy
/*
* Copyright (c) 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.persistence.ejb.entitybean.container;
import com.sun.ejb.Container;
import com.sun.ejb.EjbInvocation;
import com.sun.ejb.InvocationInfo;
import com.sun.ejb.containers.BaseContainer;
import com.sun.ejb.containers.EJBLocalHomeInvocationHandler;
import com.sun.ejb.containers.EJBLocalObjectImpl;
import com.sun.enterprise.deployment.EjbDescriptor;
/**
* Implementation of the EJBLocalHome interface for Entity Beans.
* At deployment time, one instance of this class is created
* for each EntityBean class in a JAR that has a local home.
*
* @author mvatkina
*/
public class EntityBeanLocalHomeImpl extends EJBLocalHomeInvocationHandler {
protected EntityBeanLocalHomeImpl(EjbDescriptor ejbDescriptor, Class localHomeIntf) throws Exception {
super(ejbDescriptor, localHomeIntf);
}
/**
* EJBLocalObjectImpl is created directly by the container, not by this call
*/
@Override
public EJBLocalObjectImpl createEJBLocalObjectImpl() {
return null;
}
@Override
protected void postCreate(Container container, EjbInvocation inv, InvocationInfo invInfo, Object primaryKey,
Object[] args) throws Throwable {
container.postCreate(inv, primaryKey);
invokeTargetBeanMethod((BaseContainer) container, invInfo.targetMethod2, inv, inv.ejb, args);
}
}