From: Roland Häder Date: Thu, 28 Apr 2016 12:26:59 +0000 (+0200) Subject: added missing @Remote annotation X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b21a41f15f5910c55051c758387982c3dfa94af4;p=pizzaservice-lib.git added missing @Remote annotation Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomerSessionBeanRemote.java b/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomerSessionBeanRemote.java index bd3f1da..4c1eabd 100644 --- a/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomerSessionBeanRemote.java +++ b/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomerSessionBeanRemote.java @@ -16,6 +16,7 @@ */ package org.mxchange.pizzaapplication.model.customer; +import javax.ejb.Remote; import org.mxchange.jcustomercore.model.customer.CustomerSessionBeanRemote; /** @@ -23,6 +24,7 @@ import org.mxchange.jcustomercore.model.customer.CustomerSessionBeanRemote; *

* @author Roland Haeder */ +@Remote public interface PizzaCustomerSessionBeanRemote extends CustomerSessionBeanRemote { }