@Override @Secured public void removeParameter(TestExecutionParameter tep) throws ServiceException { TestExecution exec = testExecutionDAO.get(tep.getTestExecution().getId()); if (exec == null) { throw new ServiceException( "serviceException.testExecutionNotFound", tep.getTestExecution().getName()); } TestExecutionParameter tepRemove = testExecutionParameterDAO.get(tep.getId()); testExecutionParameterDAO.remove(tepRemove); }
@Override public TestExecutionParameter getFullParameter(Long paramId) { TestExecutionParameter p = testExecutionParameterDAO.get(paramId); if (p == null) { return null; } TestExecutionParameter pclone = p.clone(); pclone.setTestExecution(p.getTestExecution().clone()); return pclone; }