Class XmDto
public class XmDto extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://ebean-orm.github.io/xml/ns/ebean}named-query" maxOccurs="unbounded"/>
<element ref="{http://ebean-orm.github.io/xml/ns/ebean}raw-sql" maxOccurs="unbounded"/>
</sequence>
<attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
-
Constructor Summary
Constructors Constructor Description XmDto() -
Method Summary
Modifier and Type Method Description StringgetClazz()Gets the value of the clazz property.List<XmNamedQuery>getNamedQuery()Gets the value of the namedQuery property.List<XmRawSql>getRawSql()Gets the value of the rawSql property.voidsetClazz(String value)Sets the value of the clazz property.
-
Constructor Details
-
XmDto
public XmDto()
-
-
Method Details
-
getNamedQuery
Gets the value of the namedQuery property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the namedQuery property.For example, to add a new item, do as follows:
getNamedQuery().add(newItem);Objects of the following type(s) are allowed in the list
XmNamedQuery -
getRawSql
Gets the value of the rawSql property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the rawSql property.For example, to add a new item, do as follows:
getRawSql().add(newItem);Objects of the following type(s) are allowed in the list
XmRawSql -
getClazz
Gets the value of the clazz property.- Returns:
- possible object is
String
-
setClazz
Sets the value of the clazz property.- Parameters:
value- allowed object isString
-