File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
src/main/java/com/ericsson/eiffel/remrem/protocol Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ apply plugin: 'eclipse'
3434
3535jar {
3636 baseName = ' remrem-protocol'
37- version = ' 0.0.5 '
37+ version = ' 0.0.6 '
3838}
3939
4040group ' com.ericsson.eiffel.remrem'
Original file line number Diff line number Diff line change 1414*/
1515package com .ericsson .eiffel .remrem .protocol ;
1616
17+ import java .util .Collection ;
18+
1719import com .google .gson .JsonObject ;
1820
1921public interface MsgService {
@@ -42,6 +44,12 @@ public interface MsgService {
4244 * @return the eventType from eiffelMessage if event type is not available then returns the null value
4345 */
4446 String getEventType (JsonObject eiffelMessage );
47+
48+ /** Returns a collection of event types supported by this protocol.
49+ * Use iterator to iterate throught the collection.
50+ * @return collection of supported event types
51+ */
52+ Collection <String > getSupportedEventTypes ();
4553
4654 /**
4755 * Returns service name.
You can’t perform that action at this time.
0 commit comments