![JAR search and dependency download from the Maven repository](/logo.png)
org.beangle.data.dao.QueryBean.scala Maven / Gradle / Ivy
The newest version!
/*
* Beangle, Agile Development Scaffold and Toolkits.
*
* Copyright © 2005, The Beangle Software.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package org.beangle.data.dao
import org.beangle.commons.collection.page.PageLimit
import org.beangle.commons.lang.Strings
/**
*
* QueryBean class.
*
*
* @author chaostone
*/
class QueryBean[T] extends LimitQuery[T] {
var lang: Query.Lang = _
var statement: String = _
var countStatement: String = _
var limit: PageLimit = _
var cacheable: Boolean = false
var params: Map[String, Any] = _
/**
* Returns count query {@link org.beangle.data.dao.query.Query}.
*/
def countQuery: Query[T] = {
if (Strings.isEmpty(countStatement)) return null
val bean = new QueryBean[T]();
bean.statement = countStatement
bean.lang = lang
bean.params = params
bean.cacheable = cacheable
bean
}
/** {@inheritDoc} */
def limit(limit: PageLimit): LimitQuery[T] = {
this.limit = limit
this
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy