-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjusted RuntimeDelegate handling for client
- set default RuntimeDelegateImpl, when using client-only or both - added correct impl - removed RuntimeDelegateService in preference to the Jersey one - removed clientOnly part from JerseyRuntimeCheck - adjusted corresponding tests Signed-off-by: Mark Hoffmann <[email protected]>
- Loading branch information
Showing
10 changed files
with
50 additions
and
81 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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
29 changes: 0 additions & 29 deletions
29
...st/src/main/java/org/eclipse/osgitech/rest/provider/jakartars/RuntimeDelegateService.java
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
...sgitech.rest/src/main/java/org/eclipse/osgitech/rest/provider/jakartars/package-info.java
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
org.eclipse.osgitech.rest/src/main/java/org/eclipse/osgitech/rest/provider/package-info.java
This file contains 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 |
---|---|---|
@@ -1,4 +1,12 @@ | ||
@Export | ||
@ServiceProvider(value = RuntimeDelegate.class, register = RuntimeDelegateImpl.class) | ||
@Referenced(org.glassfish.jersey.internal.RuntimeDelegateImpl.class) | ||
package org.eclipse.osgitech.rest.provider; | ||
|
||
import org.osgi.annotation.bundle.Export; | ||
|
||
import aQute.bnd.annotation.spi.ServiceProvider; | ||
import org.osgi.annotation.bundle.Referenced; | ||
import jakarta.ws.rs.ext.RuntimeDelegate; | ||
|
||
import org.glassfish.jersey.internal.RuntimeDelegateImpl; |
This file contains 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 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