Fixing wrong license
[nepi.git] / src / nepi / resources / ns3 / ns3client.py
index e3a203b..0133f74 100644 (file)
@@ -3,9 +3,8 @@
 #    Copyright (C) 2014 INRIA
 #
 #    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
+#    it under the terms of the GNU General Public License version 2 as
+#    published by the Free Software Foundation;
 #
 #    This program is distributed in the hope that it will be useful,
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -22,27 +21,30 @@ class NS3Client(object):
     def __init__(self):
         super(NS3Client, self).__init__()
 
-    def create(self, clazzname, *args):
+    def create(self, *args, **kwargs):
         pass
 
-    def invoke(self, uuid, operation, *args):
+    def factory(self, *args, **kwargs):
         pass
 
-    def set(self, uuid, name, value):
+    def invoke(self, *args, **kwargs):
         pass
 
-    def get(self, uuid, name):
+    def set(self, *args, **kwargs):
         pass
 
-    def trace(self, *args):
+    def get(self, *args, **kwargs):
         pass
 
-    def start(self):
+    def flush(self, *args, **kwargs):
         pass
 
-    def stop(self, time = None):
+    def start(self, *args, **kwargs):
         pass
 
-    def shutdown(self):
+    def stop(self, *args, **kwargs):
+        pass
+
+    def shutdown(self, *args, **kwargs):
         pass