summaryrefslogtreecommitdiff
path: root/exampleSite/content/docs/jersey-configuration.md
diff options
context:
space:
mode:
authorAlex Shpak <alex-shpak@users.noreply.github.com>2018-10-30 15:56:42 +0100
committerAlex Shpak <alex-shpak@users.noreply.github.com>2018-10-30 15:56:42 +0100
commit5535f8740060e3f237cc12124dd892565d6d2814 (patch)
treea48fd3ba604d3757f002f914dd4520618dedbdbd /exampleSite/content/docs/jersey-configuration.md
parentb571e84efd027d047166125c38ee935c6171e305 (diff)
Fill example site with Lorem Ipsum
Diffstat (limited to 'exampleSite/content/docs/jersey-configuration.md')
-rw-r--r--exampleSite/content/docs/jersey-configuration.md20
1 files changed, 0 insertions, 20 deletions
diff --git a/exampleSite/content/docs/jersey-configuration.md b/exampleSite/content/docs/jersey-configuration.md
deleted file mode 100644
index b5cd3c6..0000000
--- a/exampleSite/content/docs/jersey-configuration.md
+++ /dev/null
@@ -1,20 +0,0 @@
-## Jersey configuration
-### Simple configuration
-This will assume default configuration with no interceptor and Grizzly client
-```java
-resourceConfig.register(RxJerseyServerFeature.class);
-resourceConfig.register(RxJerseyClientFeature.class);
-```
-
-### Detailed configuration
-This configuration will add async request interceptor and override default client
-```java
-RxJerseyServerFeature rxJerseyServerFeature = new RxJerseyServerFeature()
- .register(AuthRequestInterceptor.class);
-
-RxJerseyClientFeature rxJerseyClientFeature = new RxJerseyClientFeature()
- .register(client); // Should be non-blocking client implementation
-
-resourceConfig.register(rxJerseyServerFeature);
-resourceConfig.register(rxJerseyClientFeature);
-``` \ No newline at end of file