Skip to content

Commit

Permalink
refactor : MoveBlockStrategy클래스에 createMoveBlockDTO메소드 추가 (Fastcampus…
Browse files Browse the repository at this point in the history
  • Loading branch information
miyounlee committed Oct 22, 2023
1 parent f077e3d commit 4253208
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
package com.javajober.spaceWall.strategy;

import com.fasterxml.jackson.databind.JsonNode;
import com.javajober.core.util.response.CommonResponse;

import java.util.List;

public interface MoveBlockStrategy {
List<Long> saveBlocks(final List<Object> subData);

List<CommonResponse> createMoveBlockDTO(List<JsonNode> blocksWithSamePosition);
String getStrategyName();
}

0 comments on commit 4253208

Please sign in to comment.