| java.lang.Object org.jboss.ejb.plugins.cmp.jdbc.metadata.JDBCQlQueryMetaData
JDBCQlQueryMetaData | final public class JDBCQlQueryMetaData implements JDBCQueryMetaData(Code) | | Immutable class which contains information about an EJB QL query.
author: Dain Sundstrom version: $Revision: 57209 $ |
JDBCQlQueryMetaData | public JDBCQlQueryMetaData(QueryMetaData queryMetaData, Method method, Class qlCompiler, boolean lazyResultSetLoading)(Code) | | Constructs a JDBCQlQueryMetaData which is defined by the queryMetaData
and is invoked by the specified method.
Parameters: queryMetaData - the metadata about this query which was loadedfrom the ejb-jar.xml file Parameters: method - the method which invokes this query |
JDBCQlQueryMetaData | public JDBCQlQueryMetaData(JDBCQlQueryMetaData defaults, JDBCReadAheadMetaData readAhead, Class compiler, boolean lazyResultSetLoading)(Code) | | Constructs a JDBCQlQueryMetaData with data from the jdbcQueryMetaData
and additional data from the xml element
|
equals | public boolean equals(Object o)(Code) | | Compares this JDBCQlQueryMetaData against the specified object. Returns
true if the objects are the same. Two JDBCQlQueryMetaData are the same
if they are both invoked by the same method.
Parameters: o - the reference object with which to compare true if this object is the same as the object argument;false otherwise |
getEjbQl | public String getEjbQl()(Code) | | Gets the EJB QL query which will be invoked.
the ejb ql String for this query |
getQLCompilerClass | public Class getQLCompilerClass()(Code) | | |
getReadAhead | public JDBCReadAheadMetaData getReadAhead()(Code) | | Gets the read ahead metadata for the query.
the read ahead metadata for the query. |
hashCode | public int hashCode()(Code) | | Returns a hashcode for this JDBCQlQueryMetaData. The hashcode is computed
by the method which invokes this query.
a hash code value for this object |
isLazyResultSetLoading | public boolean isLazyResultSetLoading()(Code) | | |
isResultTypeMappingLocal | public boolean isResultTypeMappingLocal()(Code) | | |
toString | public String toString()(Code) | | Returns a string describing this JDBCQlQueryMetaData. The exact details
of the representation are unspecified and subject to change, but the
following may be regarded as typical:
"[JDBCQlQueryMetaData: method=public org.foo.User
findByName(java.lang.String)]"
a string representation of the object |
|
|