File tree Expand file tree Collapse file tree 3 files changed +4
-22
lines changed
src/main/java/com/ericsson/eiffel/remrem/protocol Expand file tree Collapse file tree 3 files changed +4
-22
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.0.5
2
+ - Removed methods to get event family, type and domainId.
3
+
1
4
## 0.0.4
2
5
- Added method to get event type.
3
6
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.4 '
37
+ version = ' 0.0.5 '
38
38
}
39
39
40
40
group ' com.ericsson.eiffel.remrem'
Original file line number Diff line number Diff line change @@ -43,20 +43,6 @@ public interface MsgService {
43
43
*/
44
44
String getEventType (JsonObject eiffelMessage );
45
45
46
- /**
47
- * Returns Family Routing Key Word from the messaging library based on the eiffel message eventType.
48
- * @param JsonObject eiffelMessage
49
- * @return family routing key word in String format.
50
- */
51
- String getFamily (JsonObject eiffelMessage );
52
-
53
- /**
54
- * Returns Type Routing Key Word from the messaging library based on the eiffel message eventType.
55
- * @param JsonObject eiffelMessage
56
- * @return type routing key word in String format.
57
- */
58
- String getType (JsonObject eiffelMessage );
59
-
60
46
/**
61
47
* Returns service name.
62
48
*
@@ -73,13 +59,6 @@ public interface MsgService {
73
59
*/
74
60
ValidationResult validateMsg (String msgType , JsonObject jsonvalidateMessage );
75
61
76
- /**
77
- * Returns the domain Id from json formatted eiffel message.
78
- * @param eiffelMessage eiffel message in json format
79
- * @return the domainId from eiffelMessage if domainId not available then returns the null value
80
- */
81
- String getDomainId (JsonObject eiffelMessage );
82
-
83
62
/**
84
63
* Returns Routing key from the messaging library based on the eiffel message eventType.<br>
85
64
* In general, Routing key of eiffel message is in the format<br>
You can’t perform that action at this time.
0 commit comments