Uses of Class
cn.vertxup.rbac.domain.tables.pojos.OAccessToken
Packages that use OAccessToken
Package
Description
-
Uses of OAccessToken in cn.vertxup.rbac.domain.tables.daos
Methods in cn.vertxup.rbac.domain.tables.daos that return types with arguments of type OAccessTokenModifier and TypeMethodDescriptionio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByActive(Collection<Boolean> values) Find records that haveACTIVE IN (values)asynchronouslyio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByActive(Collection<Boolean> values, int limit) Find records that haveACTIVE IN (values)asynchronously limited by the given limitio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByAuth(Collection<byte[]> values) Find records that haveAUTH IN (values)asynchronouslyio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByAuth(Collection<byte[]> values, int limit) Find records that haveAUTH IN (values)asynchronously limited by the given limitio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByCreatedAt(Collection<LocalDateTime> values) Find records that haveCREATED_AT IN (values)asynchronouslyio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByCreatedAt(Collection<LocalDateTime> values, int limit) Find records that haveCREATED_AT IN (values)asynchronously limited by the given limitio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByCreatedBy(Collection<String> values) Find records that haveCREATED_BY IN (values)asynchronouslyio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByCreatedBy(Collection<String> values, int limit) Find records that haveCREATED_BY IN (values)asynchronously limited by the given limitio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByExpiredTime(Collection<Long> values) Find records that haveEXPIRED_TIME IN (values)asynchronouslyio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByExpiredTime(Collection<Long> values, int limit) Find records that haveEXPIRED_TIME IN (values)asynchronously limited by the given limitio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByLanguage(Collection<String> values) Find records that haveLANGUAGE IN (values)asynchronouslyio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByLanguage(Collection<String> values, int limit) Find records that haveLANGUAGE IN (values)asynchronously limited by the given limitio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByMetadata(Collection<String> values) Find records that haveMETADATA IN (values)asynchronouslyio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByMetadata(Collection<String> values, int limit) Find records that haveMETADATA IN (values)asynchronously limited by the given limitio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByRefreshToken(Collection<byte[]> values) Find records that haveREFRESH_TOKEN IN (values)asynchronouslyio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByRefreshToken(Collection<byte[]> values, int limit) Find records that haveREFRESH_TOKEN IN (values)asynchronously limited by the given limitio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByToken(Collection<byte[]> values) Find records that haveTOKEN IN (values)asynchronouslyio.vertx.core.Future<List<OAccessToken>>OAccessTokenDao.findManyByToken(Collection<byte[]> values, int limit) Find records that haveTOKEN IN (values)asynchronously limited by the given limitio.github.jklingsporn.vertx.jooq.classic.jdbc.JDBCClassicQueryExecutor<OAccessTokenRecord,OAccessToken, String> OAccessTokenDao.queryExecutor()Methods in cn.vertxup.rbac.domain.tables.daos with parameters of type OAccessToken -
Uses of OAccessToken in cn.vertxup.rbac.domain.tables.pojos
Methods in cn.vertxup.rbac.domain.tables.pojos that return OAccessTokenModifier and TypeMethodDescriptionSetter forDB_ETERNAL.O_ACCESS_TOKEN.ACTIVE.OAccessToken.setAuth(byte[] auth) Setter forDB_ETERNAL.O_ACCESS_TOKEN.AUTH.OAccessToken.setCreatedAt(LocalDateTime createdAt) Setter forDB_ETERNAL.O_ACCESS_TOKEN.CREATED_AT.OAccessToken.setCreatedBy(String createdBy) Setter forDB_ETERNAL.O_ACCESS_TOKEN.CREATED_BY.OAccessToken.setExpiredTime(Long expiredTime) Setter forDB_ETERNAL.O_ACCESS_TOKEN.EXPIRED_TIME.Setter forDB_ETERNAL.O_ACCESS_TOKEN.KEY.OAccessToken.setLanguage(String language) Setter forDB_ETERNAL.O_ACCESS_TOKEN.LANGUAGE.OAccessToken.setMetadata(String metadata) Setter forDB_ETERNAL.O_ACCESS_TOKEN.METADATA.OAccessToken.setRefreshToken(byte[] refreshToken) Setter forDB_ETERNAL.O_ACCESS_TOKEN.REFRESH_TOKEN.OAccessToken.setToken(byte[] token) Setter forDB_ETERNAL.O_ACCESS_TOKEN.TOKEN. -
Uses of OAccessToken in cn.vertxup.rbac.domain.tables.records
Constructors in cn.vertxup.rbac.domain.tables.records with parameters of type OAccessTokenModifierConstructorDescriptionOAccessTokenRecord(OAccessToken value) Create a detached, initialised OAccessTokenRecord -
Uses of OAccessToken in io.vertx.tp.rbac.refine
Methods in io.vertx.tp.rbac.refine that return OAccessTokenMethod parameters in io.vertx.tp.rbac.refine with type arguments of type OAccessTokenModifier and TypeMethodDescriptionstatic io.vertx.core.Future<Boolean>Sc.jwtToken(List<OAccessToken> item, String userId)