-
Notifications
You must be signed in to change notification settings - Fork 2
Refacto/cleanup #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Arnauld
wants to merge
25
commits into
edouard-gv:master
Choose a base branch
from
Arnauld:refacto/cleanup
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
4001578
equals on Object
Arnauld debce82
private fields
Arnauld 496136f
remove empty line
Arnauld a60774b
Use Date instead of Calendar - not better but less mutable tentation
Arnauld 26f7232
private fields
Arnauld e19c6c7
move ctor at head of class
Arnauld 5ef7568
reorder field then ctor then methods
Arnauld b4aff73
no getter ?
Arnauld 99da19f
reorder ctor
Arnauld a00da2c
lightweight toString
Arnauld 1ecd9c2
should rely on java's Clock directly
Arnauld e9060af
should rely on java's Clock directly and Instant
Arnauld f48c5ce
should rely on java's Clock directly and Instant - remove unused import
Arnauld 9d7eb3e
should rely on java's Clock directly and Instant
Arnauld 9aa5d0d
move feature to src/test/resources
Arnauld f2acec7
assert something
Arnauld 32bca3e
move controller in dedicated package
Arnauld cb474dd
move controller in dedicated package
Arnauld fca6b8f
get without check
Arnauld 9752b96
get without check
Arnauld 6887220
findOrFail
Arnauld 44d7b8f
extract constants : fix incoherence
Arnauld a64a9da
Parameter Object
Arnauld 1b3d8bf
exception in dedicated package, erf...
Arnauld 27982f9
move transactional to service, in absence of usecase/controller servi…
Arnauld File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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/fr/arolla/modec/BusinessException.java → ...la/modec/exception/BusinessException.java
This file contains hidden or 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: 11 additions & 0 deletions
11
src/main/java/fr/arolla/modec/exception/CartNotFoundException.java
This file contains hidden or 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,11 @@ | ||
| package fr.arolla.modec.exception; | ||
|
|
||
| import fr.arolla.modec.entity.CartId; | ||
|
|
||
| /** | ||
| */ | ||
| public class CartNotFoundException extends RuntimeException { | ||
| public CartNotFoundException(CartId cartId) { | ||
| super("cartId: " + cartId.getId()); | ||
| } | ||
| } |
11 changes: 11 additions & 0 deletions
11
src/main/java/fr/arolla/modec/exception/OrderNotFoundException.java
This file contains hidden or 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,11 @@ | ||
| package fr.arolla.modec.exception; | ||
|
|
||
| import fr.arolla.modec.entity.OrderId; | ||
|
|
||
| /** | ||
| */ | ||
| public class OrderNotFoundException extends RuntimeException { | ||
| public OrderNotFoundException(OrderId orderId) { | ||
| super("orderId: " + orderId.getId()); | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is ugly... thanks to hibernate and lazy load