@Modifying @Transactional @Procedure(name = "createReport") boolean createReport();
/** * Explicitly mapped to named stored procedure {@code User.plus1IO} in the {@link EntityManager} * * @see User */ @Procedure(name = "User.plus1") Integer plus1BackedByOtherNamedStoredProcedure(Integer arg);
/** * Directly map the method to the stored procedure in the database (to avoid the annotation madness on your domain * classes). */ @Procedure Integer plus1inout(Integer arg);
/** * Explicitly mapped to a procedure with name "plus1inout" in database. * * @see DATAJPA-455 */ @Procedure("plus1inout") Integer explicitlyNamedPlus1inout(Integer arg);
/** * Implicitly mapped to a procedure with name "plus1inout" in database via alias. * * @see DATAJPA-455 */ @Procedure(procedureName = "plus1inout") Integer plus1inout(Integer arg);
/** * Explicitly mapped to named stored procedure "User.plus1IO" in {@link EntityManager}. * * @see DATAJPA-455 */ @Procedure(name = "User.plus1IO") Integer entityAnnotatedCustomNamedProcedurePlus1IO(@Param("arg") Integer arg);
/** * Implicitly mapped to named stored procedure "User.plus1" in {@link EntityManager}. * * @see DATAJPA-455 */ @Procedure Integer plus1(@Param("arg") Integer arg);
/** * trigger creation of actions from the population of the action.case and action.actionjobplan tables * @param actionplanjobid the id of the action plan job * @return true if successful */ @Transactional(propagation = Propagation.REQUIRED, readOnly = false) @Procedure(name = "createactions") boolean createActions(@Param("p_actionplanjobid") Integer actionplanjobid);