Package org.apache.openejb.jee
Class Query
- java.lang.Object
-
- org.apache.openejb.jee.Query
-
public class Query extends Object
ejb-jar_3_1.xsdJava class for queryType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="queryType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://java.sun.com/xml/ns/javaee}descriptionType" minOccurs="0"/> <element name="query-method" type="{http://java.sun.com/xml/ns/javaee}query-methodType"/> <element name="result-type-mapping" type="{http://java.sun.com/xml/ns/javaee}result-type-mappingType" minOccurs="0"/> <element name="ejb-ql" type="{http://java.sun.com/xml/ns/javaee}xsdStringType"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Textdescriptionprotected StringejbQlprotected Stringidprotected QueryMethodqueryMethodprotected ResultTypeMappingresultTypeMapping
-
Constructor Summary
Constructors Constructor Description Query()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TextgetDescription()StringgetEjbQl()StringgetId()QueryMethodgetQueryMethod()ResultTypeMappinggetResultTypeMapping()voidsetDescription(Text value)voidsetEjbQl(String value)voidsetId(String value)voidsetQueryMethod(QueryMethod value)voidsetResultTypeMapping(ResultTypeMapping value)
-
-
-
Field Detail
-
description
protected Text description
-
queryMethod
protected QueryMethod queryMethod
-
resultTypeMapping
protected ResultTypeMapping resultTypeMapping
-
ejbQl
protected String ejbQl
-
id
protected String id
-
-
Method Detail
-
getDescription
public Text getDescription()
-
setDescription
public void setDescription(Text value)
-
getQueryMethod
public QueryMethod getQueryMethod()
-
setQueryMethod
public void setQueryMethod(QueryMethod value)
-
getResultTypeMapping
public ResultTypeMapping getResultTypeMapping()
-
setResultTypeMapping
public void setResultTypeMapping(ResultTypeMapping value)
-
getEjbQl
public String getEjbQl()
-
setEjbQl
public void setEjbQl(String value)
-
getId
public String getId()
-
setId
public void setId(String value)
-
-