Skip to content

Commit 33cd777

Browse files
authored
Removed methods to get event family, type and domainId (#5)
1 parent e0fbe37 commit 33cd777

File tree

3 files changed

+4
-22
lines changed

3 files changed

+4
-22
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.0.5
2+
- Removed methods to get event family, type and domainId.
3+
14
## 0.0.4
25
- Added method to get event type.
36

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ apply plugin: 'eclipse'
3434

3535
jar {
3636
baseName = 'remrem-protocol'
37-
version = '0.0.4'
37+
version = '0.0.5'
3838
}
3939

4040
group 'com.ericsson.eiffel.remrem'

src/main/java/com/ericsson/eiffel/remrem/protocol/MsgService.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,6 @@ public interface MsgService {
4343
*/
4444
String getEventType(JsonObject eiffelMessage);
4545

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-
6046
/**
6147
* Returns service name.
6248
*
@@ -73,13 +59,6 @@ public interface MsgService {
7359
*/
7460
ValidationResult validateMsg(String msgType, JsonObject jsonvalidateMessage);
7561

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-
8362
/**
8463
* Returns Routing key from the messaging library based on the eiffel message eventType.<br>
8564
* In general, Routing key of eiffel message is in the format<br>

0 commit comments

Comments
 (0)