First working version

This commit is contained in:
2021-10-05 16:08:29 +02:00
commit caceed005d
14 changed files with 407 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
Bundle-Version: 1.0.0
Export-Package: com.thalesgroup.nl.chat.api
-buildpath: \
osgi.annotation

View File

@@ -0,0 +1,5 @@
package com.thalesgroup.nl.chat.api;
public interface Chat {
void sendMessage(String author, String message);
}

View File

@@ -0,0 +1,4 @@
@Version("1.0.0")
package com.thalesgroup.nl.chat.api;
import org.osgi.annotation.versioning.Version;