| java.lang.Object org.jboss.ejb.plugins.cmp.jdbc.metadata.JDBCJBossQLQueryMetaData
JDBCJBossQLQueryMetaData | final public class JDBCJBossQLQueryMetaData implements JDBCQueryMetaData(Code) | | Immutable class which contains information about an JBossQL query.
author: Dain Sundstrom version: $Revision: 57209 $ |
JDBCJBossQLQueryMetaData | public JDBCJBossQLQueryMetaData(JDBCJBossQLQueryMetaData defaults, JDBCReadAheadMetaData readAhead, Class qlCompiler, boolean lazyResultSetLoading) throws DeploymentException(Code) | | Constructs a JDBCJBossQLQueryMetaData with JBossQL declared in the
jboss-ql elemnt and is invoked by the specified method.
|
JDBCJBossQLQueryMetaData | public JDBCJBossQLQueryMetaData(boolean resultTypeMappingLocal, Element element, Method method, JDBCReadAheadMetaData readAhead, Class compiler, boolean lazyResultSetLoading) throws DeploymentException(Code) | | Constructs a JDBCJBossQLQueryMetaData with JBossQL declared in the
jboss-ql elemnt and is invoked by the specified method.
|
equals | public boolean equals(Object o)(Code) | | Compares this JDBCJBossQLQueryMetaData against the specified object.
Returns true if the objects are the same. Two JDBCJBossQLQueryMetaData
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 |
getJBossQL | public String getJBossQL()(Code) | | Gets the JBossQL 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 JDBCJBossQLQueryMetaData. 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 JDBCJBossQLQueryMetaData. The exact
details of the representation are unspecified and subject to change, but
the following may be regarded as typical:
"[JDBCJBossQLQueryMetaData: method=public org.foo.User
findByName(java.lang.String)]"
a string representation of the object |
|
|