InterestProxyDAO

class InterestProxyDAO(context: Context) : ContextDAO, DAO<Interest>

This class is used to make request to the InterestService and manage the response.

Author

Yuri Brandi

See also

DAO

Constructors

Link copied to clipboard

Functions

Link copied to clipboard
open override fun doDelete(condition: String): Boolean
Link copied to clipboard
open override fun doRetrieveAll(): MutableList<Interest>?
open override fun doRetrieveAll(row_count: Int): MutableList<Interest>?
open override fun doRetrieveAll(offset: Int, row_count: Int): MutableList<Interest>?
Link copied to clipboard
open override fun doRetrieveByCondition(condition: String): MutableList<Interest>?
open override fun doRetrieveByCondition(condition: String, rows_count: Int): MutableList<Interest>?
open override fun doRetrieveByCondition(condition: String, offset: Int, rows_count: Int): MutableList<Interest>?
Link copied to clipboard
open override fun doRetrieveByKey(key: String): Interest?
Link copied to clipboard
open override fun doSave(obj: Interest?): Boolean
open override fun doSave(values: HashMap<String, *>?): Boolean
Link copied to clipboard
open override fun doSaveOrUpdate(obj: Interest?): Boolean
Link copied to clipboard
open override fun doUpdate(values: HashMap<String, *>?, condition: String): Boolean
Link copied to clipboard
fun getUrl(): String