-
Notifications
You must be signed in to change notification settings - Fork 23
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
#26: Implement ToolCommandlet for Jasypt #243
#26: Implement ToolCommandlet for Jasypt #243
Conversation
…sing-JasyptUrlUpdater-in-UpdateManager
…nction implemented
…ToolCommandletForJasypt
…pt/26-ImplementToolCommandletForJasypt
…ToolCommandletForJasypt
Pull Request Test Coverage Report for Build 8380073666Details
💛 - Coveralls |
…mmandletWithUnitTests
…mmandletWithUnitTests
…mmandletWithUnitTests
@hohwille thank you for the review and the changes requested 💯 I followed your suggestions for most of the changes, please note just some small details I had to adjust to make the code work:
- if (value != null) {
+ if (value == null) {
value = var.getDefaultValueAsString(this.context);
}
Some other minor changes:
Let me know if there are any problems or if something is not clear 😃 |
perfect. Thanks for finding and fixing.
Correct.
OK, fine. But in such situations it is better not to do that. Simply use
Fully makes sense.
That is the only issue I have. The parameters from jasypt are very generic and this makes it much more confusing for end-users:
Everything else is perfect - I just have the parameter name concern.... |
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.
@mvomiero thanks for your PR and also for finding and fixing bugs. Great work 👍
I left one comment on the parameter naming. Do you understand my PoV and agree?
If yes, you can simply update and I can merge.
Otherwise lets talk and you can convince me :)
cli/src/main/java/com/devonfw/tools/ide/tool/jasypt/Jasypt.java
Outdated
Show resolved
Hide resolved
Thank you @hohwille, I totally understand your PoV about the parameters naming. I totally agree with the |
Closes #26