org.superbiz.calculator |
|
Java Source File Name | Type | Comment |
CalculatorImpl.java | Class | This is an EJB 3 style pojo stateless session bean
Every stateless session bean implementation must be annotated
using the annotation @Stateless
This EJB has a single interface: CalculatorWs a webservice interface. |
CalculatorLocal.java | Interface | This is an EJB 3 local business interface
A local business interface may be annotated with the @Local
annotation, but it's optional. |
CalculatorRemote.java | Interface | |
CalculatorTest.java | Class | |
CalculatorWs.java | Interface | This is an EJB 3 webservice interface
A webservice interface must be annotated with the @Local
annotation. |