File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed
src/main/java/com/ericsson/eiffel/remrem/protocol Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.0.7
2
+ - Added method to get template for event types.
3
+
4
+ ## 0.0.6
5
+ - Added method to get supported event types.
6
+
1
7
## 0.0.5
2
8
- Removed methods to get event family, type and domainId.
3
9
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ apply plugin: 'eclipse'
34
34
35
35
jar {
36
36
baseName = ' remrem-protocol'
37
- version = ' 0.0.6 '
37
+ version = ' 0.0.7 '
38
38
}
39
39
40
40
group ' com.ericsson.eiffel.remrem'
Original file line number Diff line number Diff line change 16
16
17
17
import java .util .Collection ;
18
18
19
+ import com .google .gson .JsonElement ;
19
20
import com .google .gson .JsonObject ;
20
21
21
22
public interface MsgService {
@@ -45,11 +46,18 @@ public interface MsgService {
45
46
*/
46
47
String getEventType (JsonObject eiffelMessage );
47
48
48
- /** Returns a collection of event types supported by this protocol.
49
- * Use iterator to iterate throught the collection.
49
+ /**
50
+ * Returns a collection of event types supported by this protocol.
51
+ * Use iterator to iterate throught the collection.
50
52
* @return collection of supported event types
51
53
*/
52
54
Collection <String > getSupportedEventTypes ();
55
+
56
+ /**
57
+ * Returns a template for the specified event type.
58
+ * @return Json of template file
59
+ */
60
+ JsonElement getEventTemplate (String eventType );
53
61
54
62
/**
55
63
* Returns service name.
You can’t perform that action at this time.
0 commit comments