| |
|
| java.lang.Object org.apache.openejb.jee.QueryMethod
QueryMethod | public class QueryMethod (Code) | | The query-method specifies the method for a finder or select
query.
The method-name element specifies the name of a finder or select
method in the entity bean's implementation class.
Each method-param must be defined for a query-method using the
method-params element.
It is used by the query-method element.
Example:
Method finds large orders
findLargeOrders
SELECT OBJECT(o) FROM Order o
WHERE o.amount > 1000
|
setMethodName | public void setMethodName(String value)(Code) | | contains a name of an enterprise
bean method or the asterisk (*) character. The asterisk is
used when the element denotes all the methods of an
enterprise bean's client view interfaces.
|
|
|
|