-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
79 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...ion/src/main/java/com/flow/sa46lll/fileshield/application/dto/BlockedExtensionMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.flow.sa46lll.fileshield.application.dto; | ||
|
||
import com.flow.sa46lll.fileshield.BlockedExtension; | ||
|
||
public class BlockedExtensionMapper { | ||
|
||
private BlockedExtensionMapper() { | ||
} | ||
|
||
public static BlockedExtension toDomainFromUpdateDto(final Long extensionId) { | ||
return new BlockedExtension(extensionId); | ||
} | ||
} |
6 changes: 0 additions & 6 deletions
6
...main/java/com/flow/sa46lll/fileshield/application/port/in/BlockFixedExtensionUseCase.java
This file was deleted.
Oops, something went wrong.
4 changes: 3 additions & 1 deletion
4
...port/in/UnblockFixedExtensionUseCase.java → .../port/in/UpdateFixedExtensionUsecase.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
package com.flow.sa46lll.fileshield.application.port.in; | ||
|
||
public interface UnblockFixedExtensionUseCase { | ||
public interface UpdateFixedExtensionUsecase { | ||
|
||
void blockFixed(final Long extensionId); | ||
|
||
void unblockFixed(final Long extensionId); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters