Uses of Interface
is.codion.common.db.operation.ProcedureType
Packages that use ProcedureType
Package
Description
Database operations and functions.
Package configuration values:
EntityConnectionProvider.CLIENT_DOMAIN_TYPE
EntityConnectionProvider.CLIENT_CONNECTION_TYPE
Domain model related classes.
-
Uses of ProcedureType in is.codion.common.db.operation
Methods in is.codion.common.db.operation that return ProcedureTypeModifier and TypeMethodDescriptionstatic <C,
T> ProcedureType <C, T> ProcedureType.procedureType
(String name) Creates aProcedureType
with the given name and types. -
Uses of ProcedureType in is.codion.framework.db
Methods in is.codion.framework.db with parameters of type ProcedureTypeModifier and TypeMethodDescription<C extends EntityConnection,
T>
voidEntityConnection.execute
(ProcedureType<C, T> procedureType) Executes the procedure with the given type with no arguments<C extends EntityConnection,
T>
voidEntityConnection.execute
(ProcedureType<C, T> procedureType, @Nullable T argument) Executes the procedure with the given type -
Uses of ProcedureType in is.codion.framework.db.rmi
Methods in is.codion.framework.db.rmi with parameters of type ProcedureTypeModifier and TypeMethodDescription<C extends EntityConnection,
T>
voidRemoteEntityConnection.execute
(ProcedureType<C, T> procedureType) Executes the procedure with the given type with no arguments<C extends EntityConnection,
T>
voidRemoteEntityConnection.execute
(ProcedureType<C, T> procedureType, T argument) Executes the procedure with the given type -
Uses of ProcedureType in is.codion.framework.domain
Methods in is.codion.framework.domain that return types with arguments of type ProcedureTypeModifier and TypeMethodDescriptionMap
<ProcedureType<?, ?>, DatabaseProcedure<?, ?>> Domain.procedures()
final Map
<ProcedureType<?, ?>, DatabaseProcedure<?, ?>> DomainModel.procedures()
Methods in is.codion.framework.domain with parameters of type ProcedureTypeModifier and TypeMethodDescriptionprotected final <C,
T> void DomainModel.add
(ProcedureType<C, T> procedureType, DatabaseProcedure<C, T> procedure) Adds the given procedure to this domain<C,
T> DatabaseProcedure <C, T> Domain.procedure
(ProcedureType<C, T> procedureType) Retrieves the procedure of the given type.final <C,
T> DatabaseProcedure <C, T> DomainModel.procedure
(ProcedureType<C, T> procedureType)