| java.lang.Object org.objectweb.salome_tmf.databaseSQL.SQLExecutionActionResult
Method Summary | |
public void | delete(int idResActionExec) | public void | deleteAll(int idRestestExec) | public ExecutionActionWrapper | getExecAction(int idResActionExec) | public int | getID(int idRestestExec, int idAction) | public int | insert(int idExecRes, int idTest, int idAction, String description, String awaitedRes, String effectiveRes, String result) | public int | insert(int idRestestExec, int idAction, String description, String awaitedRes, String effectiveRes, String result) | public void | update(int idResActionExec, String effectiveResult, String result) | public void | update(int idExecRes, int idTest, int idAction, String effectiveResult, String result) | public void | update(int idRestestExec, int idAction, String effectiveResult, String result) | public void | update(int idRestestExec, int idAction, String description, String awaitedResult, String effectiveResult, String result) |
delete | public void delete(int idResActionExec) throws Exception(Code) | | Delete result of the action in the ExecResulAction identified by idResActionExec
Parameters: idResActionExec - throws: Exception - need permission canExecutCamp |
deleteAll | public void deleteAll(int idRestestExec) throws Exception(Code) | | Delete result of all actions in the ExecResulTest
Parameters: idRestestExec - need permission canExecutCamp |
getExecAction | public ExecutionActionWrapper getExecAction(int idResActionExec) throws Exception(Code) | | Get an ExecutionActionWrapper representing the row idResActionExec in the table EXEC_ACTION
Parameters: idResActionExec - throws: Exception - |
getID | public int getID(int idRestestExec, int idAction) throws Exception(Code) | | Get the id of the ExecutionActionResult name in the project idProject
Parameters: idRestestExec - Parameters: idAction - throws: Exception - |
insert | public int insert(int idExecRes, int idTest, int idAction, String description, String awaitedRes, String effectiveRes, String result) throws Exception(Code) | | Insert a result of the execution of the action idAction in the execution result idExecRes
Parameters: idExecRes - id of the ExecutionResult (table RES_EXEC_CAMP) Parameters: idTest - : id of the test Parameters: idAction - : id of the action Parameters: description - : description of the action Parameters: awaitedRes - : awaited result of the action Parameters: effectiveRes - : the effective result of the action Parameters: result - : of the action ('PASSED', 'FAILED', 'INCONCLUSIF') the id of the row in the table EXEC_ACTION throws: Exception - need permission canExecutCamp |
insert | public int insert(int idRestestExec, int idAction, String description, String awaitedRes, String effectiveRes, String result) throws Exception(Code) | | Insert a result of the execution of the action idAction in the execution result idExecRes
Parameters: idRestestExec - : id of the ExecutionTestResult (EXEC_CAS) Parameters: idAction - : id of the action Parameters: description - : description of the action Parameters: awaitedRes - : awaited result of the action Parameters: effectiveRes - : the effective result of the action Parameters: result - : of the action ('PASSED', 'FAILED', 'INCONCLUSIF') the id of the row in the table EXEC_ACTION throws: Exception - need permission canExecutCamp |
update | public void update(int idResActionExec, String effectiveResult, String result) throws Exception(Code) | | Update the effective result of the execution of the action
Parameters: idResActionExec - Parameters: effectiveResult - Parameters: result - : of the action ('PASSED', 'FAILED', 'INCONCLUSIF') throws: Exception - need permission canExecutCamp |
update | public void update(int idExecRes, int idTest, int idAction, String effectiveResult, String result) throws Exception(Code) | | Update the effective result of the execution of the action
Parameters: idExecRes - Parameters: idTest - Parameters: idAction - Parameters: effectiveResult - Parameters: result - : of the action ('PASSED', 'FAILED', 'INCONCLUSIF') throws: Exception - need permission canExecutCamp |
update | public void update(int idRestestExec, int idAction, String effectiveResult, String result) throws Exception(Code) | | Update the effective result of the execution of the action
Parameters: idRestestExec - Parameters: idAction - Parameters: effectiveResult - Parameters: result - : of the action ('PASSED', 'FAILED', 'INCONCLUSIF') throws: Exception - need permission canExecutCamp |
update | public void update(int idRestestExec, int idAction, String description, String awaitedResult, String effectiveResult, String result) throws Exception(Code) | | Update the description, the awaited result and effective result of the execution of the action
Parameters: idRestestExec - Parameters: idAction - Parameters: description - Parameters: awaitedResult - Parameters: effectiveResult - Parameters: result - : of the action ('PASSED', 'FAILED', 'INCONCLUSIF') throws: Exception - need permission canExecutCamp |
|
|