1 | <method> // selects all the methods |
2 | <ejb-name>BookReservation</ejb-name> |
3 | <method-name>*</method-name> |
4 | </method> |
5 | <method> // selects the given method |
6 | <ejb-name>BookReservation</ejb-name> |
7 | <method-name>reserveAll</method-name> |
8 | </method> |
9 | <method> // in case of overloading, specifies the method signature |
10 | <ejb-name>BookReservation</ejb-name> |
11 | <method-name>xxxx</method-name> |
12 | <method-params>java.lang.Interger</method-params> |
13 | <method-params>java.lang.String</method-params> |
14 | </method> |