-
Notifications
You must be signed in to change notification settings - Fork 9
[SDMEXT-1040]: Support Secondary Properties In Attachments #124
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
Merged
Merged
Changes from all commits
Commits
Show all changes
67 commits
Select commit
Hold shift + click to select a range
74d682f
Changes for CreateAttachmentHandler
PujaDeshmukh17 27fb5ed
Code for updateAttachmentHandler
PujaDeshmukh17 cd6ae94
Refactored helper methods to util class
PujaDeshmukh17 a439d43
Refactor
PujaDeshmukh17 72e5c63
Adding new parameter to rename method
PujaDeshmukh17 3e0490c
Correcting tests in SDMCreateAttachmentHandlerTest
PujaDeshmukh17 84c683b
Moving reuseable code to utils
PujaDeshmukh17 36fd3cb
Adapting exsisting UTs are per code change
PujaDeshmukh17 30a8332
Removing rm_hold check
PujaDeshmukh17 c47787d
Reverting changes for createAttachmentHandler
PujaDeshmukh17 503e02a
Working changes with mcm
PujaDeshmukh17 8d968de
Exsisting UT fix
PujaDeshmukh17 a405e79
changes for create flow
rishikunnath2747 5f7835d
UT
PujaDeshmukh17 bd55ffc
Merge branch 'CustomPropertiesImplCreateFlow', remote-tracking branch…
rishikunnath2747 9e3e83f
check for filename
rishikunnath2747 ca4238b
create flow name update
rishikunnath2747 d2e87de
fix
rishikunnath2747 ae44226
incorrect fields check
rishikunnath2747 5c66baf
refactoring to change name
rishikunnath2747 bbf3d46
unecessary types removal
rishikunnath2747 3009d8d
adding caching
rishikunnath2747 720824f
SDMUtils test
PujaDeshmukh17 5fa634c
SDMUpdateAttachmentHandler UTs
PujaDeshmukh17 a484765
fix for boolean
rishikunnath2747 307f656
removing properties cache
rishikunnath2747 18b8c2c
removing comments
rishikunnath2747 550722c
fix date type
rishikunnath2747 236b0d4
SDMUpdateAttachmentHandler test
PujaDeshmukh17 171e416
Revert "SDMUpdateAttachmentHandler test"
rishikunnath2747 4dfd1a2
Revert "fix date type"
rishikunnath2747 c538cb9
annotation and check
rishikunnath2747 b5160e1
CreateAttachmentsHandlerUTs
rishikunnath2747 940b415
UpdateAttachmentHandler test
PujaDeshmukh17 c61b0f3
Removing print statements
PujaDeshmukh17 9e2c596
Utils tests to increase coverage
PujaDeshmukh17 128949b
Fix
rishikunnath2747 69691f2
adding readme content
rishikunnath2747 5533bc1
Uts for sdmUpdateAttachmentHandler
PujaDeshmukh17 7332882
readme fix
rishikunnath2747 7aa5890
error msg
rishikunnath2747 e950bc3
fix ut + readme
rishikunnath2747 f5a9ba5
SDMServiceImp UT
PujaDeshmukh17 a88dea2
Revert "SDMServiceImp UT"
rishikunnath2747 570fdad
UT change
rishikunnath2747 0e58644
SDMServiceImpl test
PujaDeshmukh17 73ddae3
Review comments
PujaDeshmukh17 85c2d49
Adding error as constant
PujaDeshmukh17 4fd3ea7
improving ut coverage
rishikunnath2747 62dbdfb
ut fix
rishikunnath2747 d2a24a0
ut changes
rishikunnath2747 37c6615
sonar fixes
rishikunnath2747 b8263b7
removing test
rishikunnath2747 bf2379c
Update cache
rishikunnath2747 15869cb
excluding class from sonar scan
rishikunnath2747 1ae1776
fix ut
rishikunnath2747 18be35e
fixes
rishikunnath2747 a5c674c
uts
rishikunnath2747 bf18f33
spotless fix
rishikunnath2747 b0e3b7b
update filename and ut coverage
rishikunnath2747 bda9c26
resolving conflict
rishikunnath2747 c36a8db
fix spotless
rishikunnath2747 a3fded7
Merge branch 'develop' into CustomPropFinalBranch
rishikunnath2747 f0c9856
sonar fixes
rishikunnath2747 8313746
sonar fixes
rishikunnath2747 1ec958e
commenting ut
rishikunnath2747 90c376e
sonar fix
rishikunnath2747 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
12 changes: 12 additions & 0 deletions
12
sdm/src/main/java/com/sap/cds/sdm/caching/SecondaryTypesKey.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,12 @@ | ||
| package com.sap.cds.sdm.caching; | ||
|
|
||
| import lombok.AllArgsConstructor; | ||
| import lombok.Data; | ||
| import lombok.NoArgsConstructor; | ||
|
|
||
| @Data | ||
| @NoArgsConstructor | ||
| @AllArgsConstructor | ||
| public class SecondaryTypesKey { | ||
| private String repositoryId; | ||
| } |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.