-
Notifications
You must be signed in to change notification settings - Fork 835
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
Code sample - Spring JdbcTemplate JDBC ADB UCP #318
base: main
Are you sure you want to change the base?
Code sample - Spring JdbcTemplate JDBC ADB UCP #318
Conversation
f7e11e9
to
7185b44
Compare
@Kuassim can you please approve it? Thanks in advance! |
@Kuassim @jeandelavarene the adjustments were performed as required - indentation fixed. |
public enum EmployeeMessages { | ||
|
||
EMPLOYEE_CREATION_FAILED( | ||
"Employee creation failed: "), EMPLOYEE_UPDATE_FAILED( |
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.
Please fix the format
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.
Indentation is double-checked for all classes. Please note and remember the enforced format for String and enum data types as expected, per the IDE conventions we configured together. @Kuassim please review, thanks
public enum EmployeeSqlStatements { | ||
|
||
FIND_ALL_EMPLOYEES("SELECT * FROM employee"), FIND_EMPLOYEE_BY_ID( | ||
"SELECT * FROM employee WHERE id = :id"), CREATE_NEW_EMPLOYEE( |
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.
Please fix the format
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.
The indentation is double-checked for all classes. Please note and remember the enforced format for String and enum data types as expected, per the IDE conventions we configured together. @Kuassim please review, thanks
Code sample - Spring JdbcTemplate JDBC ADB UCP
Signed-off-by: Juarez Barbosa [email protected]