-
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
699be80
commit 0d8fc65
Showing
19 changed files
with
52 additions
and
59 deletions.
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
...om/gatomalvado/todo/contactmgmt/Main.java → ...om/gatomalvado/done/contactmgmt/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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...do/todo/contactmgmt/entities/Contact.java → ...do/done/contactmgmt/entities/Contact.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
...do/contactmgmt/entities/SearchResult.java → ...ne/contactmgmt/entities/SearchResult.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
...ntactmgmt/services/ContactRepository.java → ...ntactmgmt/services/ContactRepository.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
...odo/contactmgmt/services/ContactTrie.java → ...one/contactmgmt/services/ContactTrie.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
6 changes: 3 additions & 3 deletions
6
...ontactmgmt/services/MapBasedStrategy.java → ...ontactmgmt/services/MapBasedStrategy.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: 2 additions & 3 deletions
5
...lvado/todo/contactmgmt/services/Node.java → ...lvado/done/contactmgmt/services/Node.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
14 changes: 14 additions & 0 deletions
14
src/main/java/com/gatomalvado/done/contactmgmt/services/SearchStrategy.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,14 @@ | ||
package com.gatomalvado.done.contactmgmt.services; | ||
|
||
import com.gatomalvado.done.contactmgmt.entities.Contact; | ||
import com.gatomalvado.done.contactmgmt.entities.SearchResult; | ||
|
||
public interface SearchStrategy { | ||
|
||
void access(Contact contact); | ||
|
||
void remove(Contact contact); | ||
|
||
SearchResult search(String fieldValue, String fieldName); | ||
|
||
} |
9 changes: 3 additions & 6 deletions
9
...ava/com/gatomalvado/todo/trello/Main.java → ...ava/com/gatomalvado/done/trello/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
2 changes: 1 addition & 1 deletion
2
...vado/todo/trello/entities/BaseEntity.java → ...vado/done/trello/entities/BaseEntity.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
...atomalvado/todo/trello/entities/Card.java → ...atomalvado/done/trello/entities/Card.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
...alvado/todo/trello/entities/SubGroup.java → ...alvado/done/trello/entities/SubGroup.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
...alvado/todo/trello/entities/TaskUser.java → ...alvado/done/trello/entities/TaskUser.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
6 changes: 3 additions & 3 deletions
6
...ado/todo/trello/entities/TrelloBoard.java → ...ado/done/trello/entities/TrelloBoard.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/todo/trello/enums/EntityType.java → ...malvado/done/trello/enums/EntityType.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
...gatomalvado/todo/trello/enums/Status.java → ...gatomalvado/done/trello/enums/Status.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
14 changes: 7 additions & 7 deletions
14
...ado/todo/trello/service/BoardService.java → ...ado/done/trello/service/BoardService.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: 0 additions & 16 deletions
16
src/main/java/com/gatomalvado/todo/contactmgmt/services/SearchStrategy.java
This file was deleted.
Oops, something went wrong.