-
Notifications
You must be signed in to change notification settings - Fork 8
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
559091 - generic API for service registry #170
Conversation
- first glance raw implementation Signed-off-by: elena.parovyshnaya <[email protected]>
- base (runtime storing) Registry implementation Signed-off-by: elena.parovyshnaya <[email protected]>
- first design version and raw implementation Signed-off-by: elena.parovyshnaya <[email protected]>
- license header and tailing new-lines Signed-off-by: elena.parovyshnaya <[email protected]>
- formatting errors fixed Signed-off-by: elena.parovyshnaya <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #170 +/- ##
===========================================
- Coverage 9.53% 9.49% -0.05%
Complexity 105 105
===========================================
Files 438 440 +2
Lines 13046 13102 +56
Branches 1104 1104
===========================================
Hits 1244 1244
- Misses 11767 11823 +56
Partials 35 35
Continue to review full report at Codecov.
|
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.
I'm not sure that we need to use @since
for internal - that looks confusing because it shows "since already released version" while in fact it is "since the upcoming version"
...eclipse.passage.lic.api/src/org/eclipse/passage/lic/api/internal/registry/Configuration.java
Outdated
Show resolved
Hide resolved
.../org.eclipse.passage.lic.api/src/org/eclipse/passage/lic/api/internal/registry/Registry.java
Show resolved
Hide resolved
...eclipse.passage.lic.api/src/org/eclipse/passage/lic/api/internal/registry/Configuration.java
Outdated
Show resolved
Hide resolved
...s/org.eclipse.passage.lic.api/src/org/eclipse/passage/lic/api/internal/registry/Service.java
Outdated
Show resolved
Hide resolved
...org.eclipse.passage.lic.api/src/org/eclipse/passage/lic/api/internal/registry/ServiceId.java
Show resolved
Hide resolved
Code review fixes: - Service interface is parametrized with ServiceId interface implementation type - @since-tags are removed from all the existing docs - Configuration interfaces is documented, other docs are yet to come Signed-off-by: elena.parovyshnaya <[email protected]>
...eclipse.passage.lic.api/src/org/eclipse/passage/lic/api/internal/registry/Configuration.java
Outdated
Show resolved
Hide resolved
.../org.eclipse.passage.lic.api/src/org/eclipse/passage/lic/api/internal/registry/Registry.java
Show resolved
Hide resolved
...org.eclipse.passage.lic.api/src/org/eclipse/passage/lic/api/internal/registry/ServiceId.java
Show resolved
Hide resolved
...s/org.eclipse.passage.lic.api/src/org/eclipse/passage/lic/api/internal/registry/Service.java
Outdated
Show resolved
Hide resolved
Code review fixes: - Configuration interfaces is removed Signed-off-by: elena.parovyshnaya <[email protected]>
Closes 559091 |
first design version and raw implementation