-build.xml.data.CRC32=1edfee4e
+build.xml.data.CRC32=e1e3912d
build.xml.script.CRC32=82213886
build.xml.stylesheet.CRC32=651128d4@1.68.1.1
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
import java.util.Deque;
import java.util.Iterator;
import javax.annotation.PostConstruct;
+import javax.ejb.EJB;
import javax.enterprise.context.SessionScoped;
import javax.faces.FacesException;
import javax.inject.Named;
/**
* Remote bean
*/
+ @EJB
private final ShopSessionBeanRemote remote;
/**
InitialContext context = new InitialContext();
// Try to lookup the bean
- this.remote = (ShopSessionBeanRemote) context.lookup("ejb/stateless-shop");
+ this.remote = (ShopSessionBeanRemote) context.lookup("ejb/stateless-shop"); //NOI18N
}
@Override
*/
package org.mxchange.pizzaapplication.beans.customer;
+import javax.ejb.EJB;
import javax.enterprise.context.SessionScoped;
import javax.inject.Named;
import org.mxchange.jcoreee.beans.BaseFrameworkBean;
+import org.mxchange.jshopeelib.beans.remote.customer.CustomerSessionBeanRemote;
/**
* A customer bean which hides the customer instance
*/
private static final long serialVersionUID = 542145347916L;
+ /**
+ * Remote customer bean
+ */
+ @EJB
+ private CustomerSessionBeanRemote customer;
+
/**
* Default constructor
*/