Uses of Class
cn.vertxup.rbac.domain.tables.pojos.SUser
Packages that use SUser
Package
Description
-
Uses of SUser in cn.vertxup.rbac.domain.tables.daos
Methods in cn.vertxup.rbac.domain.tables.daos that return types with arguments of type SUserModifier and TypeMethodDescriptionSUserDao.findManyByActive(Collection<Boolean> values) Find records that haveACTIVE IN (values)asynchronouslySUserDao.findManyByActive(Collection<Boolean> values, int limit) Find records that haveACTIVE IN (values)asynchronously limited by the given limitSUserDao.findManyByAlias(Collection<String> values) Find records that haveALIAS IN (values)asynchronouslySUserDao.findManyByAlias(Collection<String> values, int limit) Find records that haveALIAS IN (values)asynchronously limited by the given limitSUserDao.findManyByCategory(Collection<String> values) Find records that haveCATEGORY IN (values)asynchronouslySUserDao.findManyByCategory(Collection<String> values, int limit) Find records that haveCATEGORY IN (values)asynchronously limited by the given limitSUserDao.findManyByCreatedAt(Collection<LocalDateTime> values) Find records that haveCREATED_AT IN (values)asynchronouslySUserDao.findManyByCreatedAt(Collection<LocalDateTime> values, int limit) Find records that haveCREATED_AT IN (values)asynchronously limited by the given limitSUserDao.findManyByCreatedBy(Collection<String> values) Find records that haveCREATED_BY IN (values)asynchronouslySUserDao.findManyByCreatedBy(Collection<String> values, int limit) Find records that haveCREATED_BY IN (values)asynchronously limited by the given limitSUserDao.findManyByEmail(Collection<String> values) Find records that haveEMAIL IN (values)asynchronouslySUserDao.findManyByEmail(Collection<String> values, int limit) Find records that haveEMAIL IN (values)asynchronously limited by the given limitSUserDao.findManyByLanguage(Collection<String> values) Find records that haveLANGUAGE IN (values)asynchronouslySUserDao.findManyByLanguage(Collection<String> values, int limit) Find records that haveLANGUAGE IN (values)asynchronously limited by the given limitSUserDao.findManyByMetadata(Collection<String> values) Find records that haveMETADATA IN (values)asynchronouslySUserDao.findManyByMetadata(Collection<String> values, int limit) Find records that haveMETADATA IN (values)asynchronously limited by the given limitSUserDao.findManyByMobile(Collection<String> values) Find records that haveMOBILE IN (values)asynchronouslySUserDao.findManyByMobile(Collection<String> values, int limit) Find records that haveMOBILE IN (values)asynchronously limited by the given limitSUserDao.findManyByModelId(Collection<String> values) Find records that haveMODEL_ID IN (values)asynchronouslySUserDao.findManyByModelId(Collection<String> values, int limit) Find records that haveMODEL_ID IN (values)asynchronously limited by the given limitSUserDao.findManyByModelKey(Collection<String> values) Find records that haveMODEL_KEY IN (values)asynchronouslySUserDao.findManyByModelKey(Collection<String> values, int limit) Find records that haveMODEL_KEY IN (values)asynchronously limited by the given limitSUserDao.findManyByPassword(Collection<String> values) Find records that havePASSWORD IN (values)asynchronouslySUserDao.findManyByPassword(Collection<String> values, int limit) Find records that havePASSWORD IN (values)asynchronously limited by the given limitSUserDao.findManyByRealname(Collection<String> values) Find records that haveREALNAME IN (values)asynchronouslySUserDao.findManyByRealname(Collection<String> values, int limit) Find records that haveREALNAME IN (values)asynchronously limited by the given limitSUserDao.findManyBySigma(Collection<String> values) Find records that haveSIGMA IN (values)asynchronouslySUserDao.findManyBySigma(Collection<String> values, int limit) Find records that haveSIGMA IN (values)asynchronously limited by the given limitSUserDao.findManyByUpdatedAt(Collection<LocalDateTime> values) Find records that haveUPDATED_AT IN (values)asynchronouslySUserDao.findManyByUpdatedAt(Collection<LocalDateTime> values, int limit) Find records that haveUPDATED_AT IN (values)asynchronously limited by the given limitSUserDao.findManyByUpdatedBy(Collection<String> values) Find records that haveUPDATED_BY IN (values)asynchronouslySUserDao.findManyByUpdatedBy(Collection<String> values, int limit) Find records that haveUPDATED_BY IN (values)asynchronously limited by the given limitSUserDao.findManyByUsername(Collection<String> values) Find records that haveUSERNAME IN (values)asynchronouslySUserDao.findManyByUsername(Collection<String> values, int limit) Find records that haveUSERNAME IN (values)asynchronously limited by the given limitio.github.jklingsporn.vertx.jooq.classic.jdbc.JDBCClassicQueryExecutor<SUserRecord,SUser, String> SUserDao.queryExecutor()Methods in cn.vertxup.rbac.domain.tables.daos with parameters of type SUser -
Uses of SUser in cn.vertxup.rbac.domain.tables.pojos
Methods in cn.vertxup.rbac.domain.tables.pojos that return SUserModifier and TypeMethodDescriptionSetter forDB_ETERNAL.S_USER.ACTIVE.Setter forDB_ETERNAL.S_USER.ALIAS.SUser.setCategory(String category) Setter forDB_ETERNAL.S_USER.CATEGORY.SUser.setCreatedAt(LocalDateTime createdAt) Setter forDB_ETERNAL.S_USER.CREATED_AT.SUser.setCreatedBy(String createdBy) Setter forDB_ETERNAL.S_USER.CREATED_BY.Setter forDB_ETERNAL.S_USER.EMAIL.Setter forDB_ETERNAL.S_USER.KEY.SUser.setLanguage(String language) Setter forDB_ETERNAL.S_USER.LANGUAGE.SUser.setMetadata(String metadata) Setter forDB_ETERNAL.S_USER.METADATA.Setter forDB_ETERNAL.S_USER.MOBILE.SUser.setModelId(String modelId) Setter forDB_ETERNAL.S_USER.MODEL_ID.SUser.setModelKey(String modelKey) Setter forDB_ETERNAL.S_USER.MODEL_KEY.SUser.setPassword(String password) Setter forDB_ETERNAL.S_USER.PASSWORD.SUser.setRealname(String realname) Setter forDB_ETERNAL.S_USER.REALNAME.Setter forDB_ETERNAL.S_USER.SIGMA.SUser.setUpdatedAt(LocalDateTime updatedAt) Setter forDB_ETERNAL.S_USER.UPDATED_AT.SUser.setUpdatedBy(String updatedBy) Setter forDB_ETERNAL.S_USER.UPDATED_BY.SUser.setUsername(String username) Setter forDB_ETERNAL.S_USER.USERNAME. -
Uses of SUser in cn.vertxup.rbac.domain.tables.records
Constructors in cn.vertxup.rbac.domain.tables.records with parameters of type SUserModifierConstructorDescriptionSUserRecord(SUser value) Create a detached, initialised SUserRecord -
Uses of SUser in io.vertx.tp.rbac.acl.relation
Methods in io.vertx.tp.rbac.acl.relation that return types with arguments of type SUserMethod parameters in io.vertx.tp.rbac.acl.relation with type arguments of type SUserModifier and TypeMethodDescriptionio.vertx.core.Future<io.vertx.core.json.JsonArray>io.vertx.core.Future<io.vertx.core.json.JsonArray>io.vertx.core.Future<io.vertx.core.json.JsonArray>protected io.vertx.core.Future<Boolean>AbstractBind.purgeAsync(List<SUser> users, Class<?> daoCls, String field) -
Uses of SUser in io.vertx.tp.rbac.refine
Methods in io.vertx.tp.rbac.refine that return types with arguments of type SUserModifier and TypeMethodDescriptionMethods in io.vertx.tp.rbac.refine with parameters of type SUserMethod parameters in io.vertx.tp.rbac.refine with type arguments of type SUser