Interface UstraBatchService

All Superinterfaces:
UstraBaseService
All Known Implementing Classes:
DefaultDbUstraBatchService

public interface UstraBatchService extends UstraBaseService
  • Method Details

    • getBatches

      배치 목록 조회
      Parameters:
      criteria - 조회 조건
      Returns:
      조회된 배치 목록
    • getBatch

      UstraBatchModel getBatch(String batId)
      배치 조회
      Parameters:
      batId - 조회할 배치 아이디
      Returns:
      조회된 배치 정보
    • addBatch

      int addBatch(UstraBatchModel batch)
      배치 등록
      Parameters:
      batch - 등록할 배치 정보
      Returns:
    • updateBatch

      int updateBatch(UstraBatchModel batch)
      배치 수정
      Parameters:
      appStt - 수정할 배치 정보
      Returns:
    • removeBatch

      int removeBatch(String batId)
      배치 삭제
      Parameters:
      batId - 삭제할 배치 아이디
      Returns:
    • startBatch

      int startBatch(String batId, List<org.apache.commons.lang3.tuple.Pair<String,String>> parameterList)