aboutsummaryrefslogtreecommitdiffstats
path: root/src/vpp-api/java/jvpp/gen/jvppgen/util.py
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-12-07 17:17:35 +0100
committerMarek Gradzki <mgradzki@cisco.com>2017-12-07 17:17:39 +0100
commitacf33e49b99f8046ae42ed5fd8bff47be396dd7c (patch)
tree0e2adaa0429e2bf794ddd34650dfa565d254da9d /src/vpp-api/java/jvpp/gen/jvppgen/util.py
parent8f3ad25c637381da3f499f992c3477768cb636f9 (diff)
jvpp: unify notification handling
Since introduction of dedicated SW Interface Event, there is no need for special handling of messages that can be both requests and events. Change-Id: I76575e32c6d5b19e9a1ca953e5841d8ac3de4de7 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'src/vpp-api/java/jvpp/gen/jvppgen/util.py')
-rw-r--r--src/vpp-api/java/jvpp/gen/jvppgen/util.py21
1 files changed, 3 insertions, 18 deletions
diff --git a/src/vpp-api/java/jvpp/gen/jvppgen/util.py b/src/vpp-api/java/jvpp/gen/jvppgen/util.py
index 6c2ffbc420c..ce34f8549d8 100644
--- a/src/vpp-api/java/jvpp/gen/jvppgen/util.py
+++ b/src/vpp-api/java/jvpp/gen/jvppgen/util.py
@@ -148,16 +148,12 @@ jni_field_accessors = {'u8': 'ByteField',
'f64[]': 'ObjectField'
}
-# FIXME no convention in the naming of events (notifications) in vpe.api
-notifications_message_suffixes = ("event", "counters")
def is_notification(name):
- """ Returns true if the structure is a notification regardless of its no other use """
- return is_just_notification(name)
+ """ Returns true if the structure is a notification """
+ # FIXME no convention in the naming of events (notifications) in vpe.api
+ notifications_message_suffixes = ("event", "counters")
-
-def is_just_notification(name):
- """ Returns true if the structure is just a notification and has no other use """
return name.lower().endswith(notifications_message_suffixes)
@@ -182,16 +178,5 @@ def api_message_to_javadoc(api_message):
return " * " + str.replace("\n", "\n * ")
-notification_dto_suffix = "Notification"
-
-
-def add_notification_suffix(camel_case_dto_name):
- camel_case_dto_name += notification_dto_suffix
- return camel_case_dto_name
-
-
def is_array(java_type_as_string):
return java_type_as_string.endswith("[]")
-
-def is_want(name):
- return name.startswith("want_") \ No newline at end of file