public void deleteErrorDocumentsForWorkflowRun(String workflowRunId) throws ReferenceServiceException { checkDao(); errorDao.deleteErrorDocumentsForWFRun(workflowRunId); }
public ErrorDocument getError(T2Reference id) throws ErrorDocumentServiceException { checkDao(); try { return errorDao.get(id); } catch (Throwable t) { throw new ErrorDocumentServiceException(t); } }
public ErrorDocument getError(T2Reference id) throws ErrorDocumentServiceException { checkDao(); try { return errorDao.get(id); } catch (Throwable t) { throw new ErrorDocumentServiceException(t); } }
public boolean delete(T2Reference reference) throws ReferenceServiceException { checkDao(); ErrorDocument doc = errorDao.get(reference); if (doc==null) return false; return errorDao.delete(doc); }
public ErrorDocument getError(T2Reference id) throws ErrorDocumentServiceException { checkDao(); try { return errorDao.get(id); } catch (Throwable t) { throw new ErrorDocumentServiceException(t); } }
checkDao(); checkGenerator();
checkDao(); checkGenerator();
ReferenceContext context) throws ErrorDocumentServiceException { context = EmptyReferenceContext.checkContext(context); checkDao(); checkGenerator();
public ErrorDocument registerError(String message, Set<T2Reference> errors, int depth, ReferenceContext context) throws ErrorDocumentServiceException { checkDao(); checkGenerator();
public ErrorDocument registerError(String message, Set<T2Reference> errors, int depth) throws ErrorDocumentServiceException { checkDao(); checkGenerator();
public ErrorDocument registerError(String message, Set<T2Reference> errors, int depth, ReferenceContext context) throws ErrorDocumentServiceException { checkDao(); checkGenerator(); context = EmptyReferenceContext.checkContext(context);