summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-04-08 15:18:32 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-04-08 15:18:32 +0000
commit71d720ce7b90f83f322259507d064f18017df2fa (patch)
tree3e6a45fee5e484ed811a89c53a53bb30360eba39
parentf7c01911f4b2e942c2220be7a1df1f502966f34d (diff)
Try to remove non-utf8 characters from source
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@931968 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-2.x/trunk/modules/node-impl-osgi/src/main/java/org/apache/tuscany/sca/osgi/remoteserviceadmin/impl/RemoteServiceAdminImpl.java40
1 files changed, 20 insertions, 20 deletions
diff --git a/sca-java-2.x/trunk/modules/node-impl-osgi/src/main/java/org/apache/tuscany/sca/osgi/remoteserviceadmin/impl/RemoteServiceAdminImpl.java b/sca-java-2.x/trunk/modules/node-impl-osgi/src/main/java/org/apache/tuscany/sca/osgi/remoteserviceadmin/impl/RemoteServiceAdminImpl.java
index 38a7dd130c..56e17a5642 100644
--- a/sca-java-2.x/trunk/modules/node-impl-osgi/src/main/java/org/apache/tuscany/sca/osgi/remoteserviceadmin/impl/RemoteServiceAdminImpl.java
+++ b/sca-java-2.x/trunk/modules/node-impl-osgi/src/main/java/org/apache/tuscany/sca/osgi/remoteserviceadmin/impl/RemoteServiceAdminImpl.java
@@ -218,26 +218,26 @@ public class RemoteServiceAdminImpl implements RemoteServiceAdmin, ManagedServic
}
String topic = "org/osgi/service/remoteserviceadmin/" + eventType;
Map<String, Object> props = new HashMap<String, Object>();
- /*
- * <ul>
- <li>bundle – (Bundle) The Remote Service Admin bundle
- <li>bundle-id – (Long) The id of the Blueprint bundle.
- <li>bundle-symbolicname – (String) The Bundle Symbolic Name of the
- Remote Service Admin bundle.
- <li>bundle-version - (Version) The version of the Blueprint bundle.
- <li>cause – The exception, if present.
- <li>import.registration – An imported endpoint, if present
- <li>export.registration – An exported endpoint, if present
- <li>service.remote.id – Remote service UUID, if present
- <li>service.remote.uuid – Remote service UUID, if present
- <li>service.remote.uri – (String) The URI of the endpoint, if present
- <li>objectClass – (String[]) The interface names, if present
- <li>service.imported.configs – (String+) The configuration types of the
- imported services, if present
- <li>timestamp – (Long) The time when the event occurred
- <li>event – (RemoteServiceAdminEvent) The RemoteServiceAdminEvent
- object that caused this event.
- </ul>
+ /*
+ * <ul>
+ <li>bundle – (Bundle) The Remote Service Admin bundle
+ <li>bundle-id – (Long) The id of the Blueprint bundle.
+ <li>bundle-symbolicname – (String) The Bundle Symbolic Name of the
+ Remote Service Admin bundle.
+ <li>bundle-version - (Version) The version of the Blueprint bundle.
+ <li>cause – The exception, if present.
+ <li>import.registration – An imported endpoint, if present
+ <li>export.registration – An exported endpoint, if present
+ <li>service.remote.id – Remote service UUID, if present
+ <li>service.remote.uuid – Remote service UUID, if present
+ <li>service.remote.uri – (String) The URI of the endpoint, if present
+ <li>objectClass – (String[]) The interface names, if present
+ <li>service.imported.configs – (String+) The configuration types of the
+ imported services, if present
+ <li>timestamp – (Long) The time when the event occurred
+ <li>event – (RemoteServiceAdminEvent) The RemoteServiceAdminEvent
+ object that caused this event.
+ </ul>
*/
Bundle rsaBundle = context.getBundle();
props.put("bundle", rsaBundle);