-
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.
solved two problems trello and contact mgmt system
- Loading branch information
Vishal M Yadav
committed
Dec 1, 2024
1 parent
90d31b4
commit 699be80
Showing
123 changed files
with
1,273 additions
and
417 deletions.
There are no files selected for viewing
14 changes: 0 additions & 14 deletions
14
src/main/java/com/gatomalvado/chess/service/Board8PosValidator.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
src/main/java/com/gatomalvado/chess/service/IBoardInitializer.java
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
src/main/java/com/gatomalvado/chess/service/IPieceMoveValidator.java
This file was deleted.
Oops, something went wrong.
14 changes: 7 additions & 7 deletions
14
...main/java/com/gatomalvado/chess/Main.java → ...java/com/gatomalvado/done/chess/Main.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
5 changes: 1 addition & 4 deletions
5
...atomalvado/chess/model/AbstractBoard.java → ...lvado/done/chess/model/AbstractBoard.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
4 changes: 1 addition & 3 deletions
4
...a/com/gatomalvado/chess/model/Board8.java → .../gatomalvado/done/chess/model/Board8.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
3 changes: 1 addition & 2 deletions
3
...ava/com/gatomalvado/chess/model/Move.java → ...om/gatomalvado/done/chess/model/Move.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
7 changes: 3 additions & 4 deletions
7
...va/com/gatomalvado/chess/model/Piece.java → ...m/gatomalvado/done/chess/model/Piece.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
4 changes: 2 additions & 2 deletions
4
...a/com/gatomalvado/chess/model/Player.java → .../gatomalvado/done/chess/model/Player.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
2 changes: 1 addition & 1 deletion
2
...com/gatomalvado/chess/model/Position.java → ...atomalvado/done/chess/model/Position.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,4 +1,4 @@ | ||
package com.gatomalvado.chess.model; | ||
package com.gatomalvado.done.chess.model; | ||
|
||
import lombok.Getter; | ||
|
||
|
4 changes: 1 addition & 3 deletions
4
...omalvado/chess/model/enums/PieceType.java → ...ado/done/chess/model/enums/PieceType.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
2 changes: 1 addition & 1 deletion
2
...malvado/chess/model/enums/PlayerType.java → ...do/done/chess/model/enums/PlayerType.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
16 changes: 8 additions & 8 deletions
16
...chess/orchestrator/ChessOrchestrator.java → ...chess/orchestrator/ChessOrchestrator.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
10 changes: 10 additions & 0 deletions
10
src/main/java/com/gatomalvado/done/chess/service/Board8PosValidator.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,10 @@ | ||
package com.gatomalvado.done.chess.service; | ||
|
||
import com.gatomalvado.done.chess.model.AbstractBoard; | ||
import com.gatomalvado.done.chess.model.Move; | ||
|
||
public interface Board8PosValidator { | ||
|
||
boolean validate(AbstractBoard board, Move move); | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/com/gatomalvado/done/chess/service/IBoardInitializer.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,10 @@ | ||
package com.gatomalvado.done.chess.service; | ||
|
||
import java.util.List; | ||
|
||
import com.gatomalvado.done.chess.model.AbstractBoard; | ||
import com.gatomalvado.done.chess.model.Piece; | ||
|
||
public interface IBoardInitializer { | ||
public List<Piece> initializeBoard(AbstractBoard board); | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/java/com/gatomalvado/done/chess/service/IPieceMoveValidator.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,8 @@ | ||
package com.gatomalvado.done.chess.service; | ||
|
||
import com.gatomalvado.done.chess.model.AbstractBoard; | ||
import com.gatomalvado.done.chess.model.Move; | ||
|
||
public interface IPieceMoveValidator { | ||
boolean validate(Move move, AbstractBoard board); | ||
} |
16 changes: 8 additions & 8 deletions
16
...vado/chess/service/impl/BoardFactory.java → ...done/chess/service/impl/BoardFactory.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
15 changes: 7 additions & 8 deletions
15
...impl/board8/Board8BishopPosValidator.java → ...impl/board8/Board8BishopPosValidator.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
19 changes: 12 additions & 7 deletions
19
...ervice/impl/board8/Board8Initializer.java → ...ervice/impl/board8/Board8Initializer.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
11 changes: 5 additions & 6 deletions
11
...e/impl/board8/Board8KingPosValidator.java → ...e/impl/board8/Board8KingPosValidator.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
11 changes: 5 additions & 6 deletions
11
...impl/board8/Board8KnightPosValidator.java → ...impl/board8/Board8KnightPosValidator.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
16 changes: 7 additions & 9 deletions
16
...vice/impl/board8/Board8PawnValidator.java → ...vice/impl/board8/Board8PawnValidator.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
15 changes: 6 additions & 9 deletions
15
...impl/board8/Board8PieceMoveValidator.java → ...impl/board8/Board8PieceMoveValidator.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
11 changes: 5 additions & 6 deletions
11
.../impl/board8/Board8QueenPosValidator.java → .../impl/board8/Board8QueenPosValidator.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
19 changes: 8 additions & 11 deletions
19
...e/impl/board8/Board8RookPosValidator.java → ...e/impl/board8/Board8RookPosValidator.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
2 changes: 1 addition & 1 deletion
2
...java/com/gatomalvado/eventbus/Broker.java → ...com/gatomalvado/done/eventbus/Broker.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
2 changes: 1 addition & 1 deletion
2
...va/com/gatomalvado/eventbus/Consumer.java → ...m/gatomalvado/done/eventbus/Consumer.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,4 +1,4 @@ | ||
package com.gatomalvado.eventbus; | ||
package com.gatomalvado.done.eventbus; | ||
|
||
public class Consumer { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...n/java/com/gatomalvado/eventbus/Main.java → ...a/com/gatomalvado/done/eventbus/Main.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,4 +1,4 @@ | ||
package com.gatomalvado.eventbus; | ||
package com.gatomalvado.done.eventbus; | ||
|
||
public class Main { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...va/com/gatomalvado/eventbus/Producer.java → ...m/gatomalvado/done/eventbus/Producer.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,4 +1,4 @@ | ||
package com.gatomalvado.eventbus; | ||
package com.gatomalvado.done.eventbus; | ||
|
||
public class Producer { | ||
|
||
|
Oops, something went wrong.