Interface AnexoDao

All Superinterfaces:
Dao<Anexo,AnexoInstanciaPK>
All Known Implementing Classes:
AnexoDaoImpl

public interface AnexoDao extends Dao<Anexo,AnexoInstanciaPK>
  • Method Details

    • getArquivosInstancia

      List<Anexo> getArquivosInstancia(Instancia instancia)
    • getArquivosInstancia

      List<Anexo> getArquivosInstancia(String processInstanceId)
    • getArquivoInstancia

      Anexo getArquivoInstancia(String processInstanceId, Integer arquivoId)
    • getAnexoByUUID

      Anexo getAnexoByUUID(String uuid)
    • getArquivosInstancia

      List<Anexo> getArquivosInstancia(String processInstanceId, String proprietario)
    • getArquivosInstanciaCount

      Long getArquivosInstanciaCount(String processInstanceId)
    • getArquivosInstancia

      List<Anexo> getArquivosInstancia(String processInstanceId, int offset, int limit)
    • getArquivosTarefa

      List<Anexo> getArquivosTarefa(String taskId)
    • existeAnexo

      boolean existeAnexo(String taskId, String anexoId)
    • getAnexo

      Anexo getAnexo(String taskId, String anexoId)
    • existeAnexo

      boolean existeAnexo(String processInstanceId)
    • getAnexoInstancia

      Anexo getAnexoInstancia(String attachmentId, String processInstanceId)
    • existeAnexoInstancia

      boolean existeAnexoInstancia(String attachmentId, String processInstanceId)
    • getAnexos

      List<Anexo> getAnexos(AnexoFilter filter, int offset, int limit)
    • getAnexosCount

      Long getAnexosCount(AnexoFilter filter)
    • getAnexosTarefaPorTag

      List<Anexo> getAnexosTarefaPorTag(String taskId, String tag)
    • getCountAnexosTarefaPorTag

      Long getCountAnexosTarefaPorTag(String taskId, String tag)
    • getAnexosProcessoPorTag

      List<Anexo> getAnexosProcessoPorTag(String processInstanceId, String tag)
    • getCountAnexosProcessoPorTag

      Long getCountAnexosProcessoPorTag(String processInstanceId, String tag)