Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ apply plugin: 'eclipse'

jar {
baseName = 'remrem-protocol'
version = '0.0.5'
version = '0.0.6'
}

group 'com.ericsson.eiffel.remrem'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
*/
package com.ericsson.eiffel.remrem.protocol;

import java.util.Collection;

import com.google.gson.JsonObject;

public interface MsgService {
Expand Down Expand Up @@ -42,6 +44,12 @@ public interface MsgService {
* @return the eventType from eiffelMessage if event type is not available then returns the null value
*/
String getEventType(JsonObject eiffelMessage);

/** Returns a collection of event types supported by this protocol.
* Use iterator to iterate throught the collection.
* @return collection of supported event types
*/
Collection<String> getSupportedEventTypes();

/**
* Returns service name.
Expand Down