You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by am...@apache.org on 2019/05/28 21:24:56 UTC

[cxf-dosgi] 07/16: Fix typos

This is an automated email from the ASF dual-hosted git repository.

amichai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cxf-dosgi.git

commit ef22f0e7180bc158b7d7aa41e282047c825aeec7
Author: Amichai Rothman <am...@apache.org>
AuthorDate: Tue May 28 21:02:24 2019 +0300

    Fix typos
---
 Readme.md                                                         | 2 +-
 distribution/Readme.md                                            | 2 +-
 provider-ws/Readme.md                                             | 2 +-
 .../java/org/apache/cxf/dosgi/dsw/handlers/ws/WsProvider.java     | 2 +-
 release_notes.md                                                  | 8 ++++----
 .../org/apache/cxf/dosgi/samples/rest/impl/TaskResourceImpl.java  | 2 +-
 samples/ssl/README.md                                             | 2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/Readme.md b/Readme.md
index 16ff485..22c95cd 100644
--- a/Readme.md
+++ b/Readme.md
@@ -18,7 +18,7 @@ CXF DOSGi allows to easily publish and consume SOAP and REST services without us
 
 Intents allow a service to leverage CXF extensions like features. A service can list the named intents it requires. 
 It will then only be exported / imported once all the intents are available. This allows for example security restrictions or logging.
-For more informations see [common module](common).
+For more information see [common module](common).
 
 ## Build
 
diff --git a/distribution/Readme.md b/distribution/Readme.md
index 651bf9d..e0ce8f9 100644
--- a/distribution/Readme.md
+++ b/distribution/Readme.md
@@ -1,4 +1,4 @@
-# CXF DOSGi Distribtions
+# CXF DOSGi Distributions
 
 ## Apache karaf features
 
diff --git a/provider-ws/Readme.md b/provider-ws/Readme.md
index 6632058..c6b7a8c 100644
--- a/provider-ws/Readme.md
+++ b/provider-ws/Readme.md
@@ -18,7 +18,7 @@ then JAX-WS mode is used else simple mode is used.
 
 ## Simple
 
-This mode uses the CXF simple frontend and the Aegis Databinding. It can export almost any service but is not much configureable. Aegis is also not very popular anymore. So this
+This mode uses the CXF simple frontend and the Aegis Databinding. It can export almost any service but is not much configurable. Aegis is also not very popular anymore. So this
 mode for exporting existing services and small tests. For most cases the JAX-WS mode is recommended.
 
 ## JAX-WS
diff --git a/provider-ws/src/main/java/org/apache/cxf/dosgi/dsw/handlers/ws/WsProvider.java b/provider-ws/src/main/java/org/apache/cxf/dosgi/dsw/handlers/ws/WsProvider.java
index 7584f02..6006fe8 100644
--- a/provider-ws/src/main/java/org/apache/cxf/dosgi/dsw/handlers/ws/WsProvider.java
+++ b/provider-ws/src/main/java/org/apache/cxf/dosgi/dsw/handlers/ws/WsProvider.java
@@ -191,7 +191,7 @@ public class WsProvider extends BaseDistributionProvider implements Distribution
                                                          completeEndpointAddress, intentNames);
             return createServerFromFactory(factory, epd);
         } catch (Exception e) {
-            throw new RuntimeException("Error exporting service with adress " + completeEndpointAddress, e);
+            throw new RuntimeException("Error exporting service with address " + completeEndpointAddress, e);
         }
     }
 
diff --git a/release_notes.md b/release_notes.md
index 1c70343..23f7ec5 100644
--- a/release_notes.md
+++ b/release_notes.md
@@ -204,7 +204,7 @@ Release Notes - CXF Distributed OSGi - Version 1.5.0
     * [DOSGI-69] - CXF-DOSGi requires internet access when reading XML
     * [DOSGI-90] - Do not use/assume that endpoint.id is an address
     * [DOSGI-92] - Exception : Applying intent: SOAP via binding config
-    * [DOSGI-109] - NullPointerException in ToloplogyManager during bundle
+    * [DOSGI-109] - NullPointerException in TopologyManager during bundle
     * stop
     * [DOSGI-110] - Unable to export multiple services
     * [DOSGI-111] - DOSGi bundle attempts to load WSDL using wrong bundle in
@@ -280,7 +280,7 @@ Fixes needed in order to pass the OSGi 4.3 Remote Service Admin TCK.
 1.3
 ===
 
-The following modules have been removed from the destribution:
+The following modules have been removed from the distribution:
 
 * org.apache.cxf.dosgi:cxf-dosgi-ri-discovery-distributed-zookeeper-wrapper
 
@@ -288,7 +288,7 @@ The following modules have been removed from the destribution:
 
 * org.apache.cxf.dosgi:cxf-dosgi-remote-service-admin-interfaces
 
-  org.osgi:org.osgi.enterprize:4.2.0 artifact is now available. See DOSGI-104 for more information.
+  org.osgi:org.osgi.enterprise:4.2.0 artifact is now available. See DOSGI-104 for more information.
 
 Many dependencies have been updated, including the update to CXF 2.5.1. See also DOSGI-96.
 
@@ -365,7 +365,7 @@ Additionally, a number of bugs has been fixed including:
 * [DOSGI-43] - ClassCastException with Declarative Services
 * [DOSGI-44] - Existing OSGi Services are not remoted when CXF-DOSGi is started
 * [DOSGI-50] - Need to automatically infer SOAP/HTTP transport intents if not
-             explicily set via osgi.remote.requires.intents
+               explicitly set via osgi.remote.requires.intents
 * [DOSGI-54] - RemoteServiceAdmin interfaces/classes out of sync with official version
 * [DOSGI-61] - The Zookeeper Discovery only supports primitive types as service properties
 * [DOSGI-62] - The DSW creates endpoints with localhost URLs
diff --git a/samples/rest/impl/src/main/java/org/apache/cxf/dosgi/samples/rest/impl/TaskResourceImpl.java b/samples/rest/impl/src/main/java/org/apache/cxf/dosgi/samples/rest/impl/TaskResourceImpl.java
index e8c3e92..52a6afe 100644
--- a/samples/rest/impl/src/main/java/org/apache/cxf/dosgi/samples/rest/impl/TaskResourceImpl.java
+++ b/samples/rest/impl/src/main/java/org/apache/cxf/dosgi/samples/rest/impl/TaskResourceImpl.java
@@ -90,7 +90,7 @@ public class TaskResourceImpl implements TaskResource, IntentsProvider {
 
     private Swagger2Feature createSwaggerFeature() {
         Swagger2Feature swagger = new Swagger2Feature();
-        swagger.setDescription("Sample jaxrs application to organize taks");
+        swagger.setDescription("Sample jaxrs application to organize tasks");
         swagger.setTitle("Tasks sample");
         swagger.setUsePathBasedConfig(true); // Necessary for OSGi
         // swagger.setScan(false); // Must be set for cxf < 3.2.x
diff --git a/samples/ssl/README.md b/samples/ssl/README.md
index 056c2df..fe83e4b 100644
--- a/samples/ssl/README.md
+++ b/samples/ssl/README.md
@@ -30,7 +30,7 @@ keytool -exportcert -storepass password -keystore etc/keystores/keystore.jks -al
 keytool -importcert -storepass password -keystore etc/keystores/client.jks -alias serverKey -file server.cert
 ```
 
-- Copy thes files in etc to the karaf etc dir
+- Copy these files in etc to the karaf etc dir
 - Copy the keystores (*.jks) into the karaf etc directory.
 
 ## Installation