01: package com.flexive.example.shared.interfaces;
02:
03: import javax.ejb.Local;
04:
05: /**
06: * <p>The local interface of the example EJB.</p>
07: * <p>
08: * You should only use this interface when you're sure it exists in the current context
09: * (e.g. for EJB calls inside EJBs).
10: * </p>
11: */
12: @Local
13: public interface EJBExampleLocal extends EJBExample {
14: }
|