Class AuditeventDao
java.lang.Object
org.jooq.impl.DAOImpl<AuditeventRecord,Auditevent,Long>
org.trustdeck.jooq.generated.tables.daos.AuditeventDao
- All Implemented Interfaces:
org.jooq.DAO<AuditeventRecord,Auditevent, Long>
This class is generated by jOOQ.
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new AuditeventDao without any configurationAuditeventDao(org.jooq.Configuration configuration) Create a new AuditeventDao with an attached configuration -
Method Summary
Modifier and TypeMethodDescriptionFetch records that haveid IN (values)fetchByRequestbody(String... values) Fetch records that haverequestbody IN (values)fetchByRequesterip(String... values) Fetch records that haverequesterip IN (values)fetchByRequesttime(LocalDateTime... values) Fetch records that haverequesttime IN (values)fetchByRequesturl(String... values) Fetch records that haverequesturl IN (values)fetchByUsername(String... values) Fetch records that haveusername IN (values)fetchOneById(Long value) Fetch a unique record that hasid = valuefetchOptionalById(Long value) Fetch a unique record that hasid = valuefetchRangeOfId(Long lowerInclusive, Long upperInclusive) Fetch records that haveid BETWEEN lowerInclusive AND upperInclusivefetchRangeOfRequestbody(String lowerInclusive, String upperInclusive) Fetch records that haverequestbody BETWEEN lowerInclusive AND upperInclusivefetchRangeOfRequesterip(String lowerInclusive, String upperInclusive) Fetch records that haverequesterip BETWEEN lowerInclusive AND upperInclusivefetchRangeOfRequesttime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) Fetch records that haverequesttime BETWEEN lowerInclusive AND upperInclusivefetchRangeOfRequesturl(String lowerInclusive, String upperInclusive) Fetch records that haverequesturl BETWEEN lowerInclusive AND upperInclusivefetchRangeOfUsername(String lowerInclusive, String upperInclusive) Fetch records that haveusername BETWEEN lowerInclusive AND upperInclusivegetId(Auditevent object) Methods inherited from class org.jooq.impl.DAOImpl
compositeKeyRecord, configuration, count, ctx, delete, delete, delete, deleteById, deleteById, deleteById, dialect, exists, existsById, family, fetch, fetch, fetchOne, fetchOptional, fetchRange, findAll, findById, findOptionalById, getTable, getType, insert, insert, insert, mapper, merge, merge, merge, setConfiguration, settings, update, update, update
-
Constructor Details
-
AuditeventDao
public AuditeventDao()Create a new AuditeventDao without any configuration -
AuditeventDao
public AuditeventDao(org.jooq.Configuration configuration) Create a new AuditeventDao with an attached configuration
-
-
Method Details
-
getId
-
fetchRangeOfId
Fetch records that haveid BETWEEN lowerInclusive AND upperInclusive -
fetchById
Fetch records that haveid IN (values) -
fetchOneById
Fetch a unique record that hasid = value -
fetchOptionalById
Fetch a unique record that hasid = value -
fetchRangeOfRequesttime
public List<Auditevent> fetchRangeOfRequesttime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) Fetch records that haverequesttime BETWEEN lowerInclusive AND upperInclusive -
fetchByRequesttime
Fetch records that haverequesttime IN (values) -
fetchRangeOfUsername
Fetch records that haveusername BETWEEN lowerInclusive AND upperInclusive -
fetchByUsername
Fetch records that haveusername IN (values) -
fetchRangeOfRequesterip
Fetch records that haverequesterip BETWEEN lowerInclusive AND upperInclusive -
fetchByRequesterip
Fetch records that haverequesterip IN (values) -
fetchRangeOfRequesturl
Fetch records that haverequesturl BETWEEN lowerInclusive AND upperInclusive -
fetchByRequesturl
Fetch records that haverequesturl IN (values) -
fetchRangeOfRequestbody
Fetch records that haverequestbody BETWEEN lowerInclusive AND upperInclusive -
fetchByRequestbody
Fetch records that haverequestbody IN (values)
-