implementation of void admin functions
authorMiloš Mulač <mulac@civ.zcu.cz>
Thu, 15 Sep 2005 12:26:17 +0000 (12:26 +0000)
committerMiloš Mulač <mulac@civ.zcu.cz>
Thu, 15 Sep 2005 12:26:17 +0000 (12:26 +0000)
org.glite.jp.index/src/soap_ops.c
org.glite.jp.index/src/ws_typemap.h

index 592ee77..2b9d7a6 100644 (file)
@@ -86,3 +86,40 @@ SOAP_FMAC5 int SOAP_FMAC6 __jpsrv__QueryJobs(
        puts(__FUNCTION__);
        return SOAP_OK;
 }
+
+
+SOAP_FMAC5 int SOAP_FMAC6 __jpsrv__AddFeed(
+        struct soap *soap,
+        struct _jpelem__AddFeed *in,
+        struct _jpelem__AddFeedResponse *out)
+{
+        // XXX: test client in examples/jpis-test
+        //      sends to this function some data for testing
+        puts(__FUNCTION__);
+        return SOAP_OK;
+}
+
+
+SOAP_FMAC5 int SOAP_FMAC6 __jpsrv__GetFeedIDs(
+        struct soap *soap,
+        struct _jpelem__GetFeedIDs *in,
+        struct _jpelem__GetFeedIDsResponse *out)
+{
+        // XXX: test client in examples/jpis-test
+        //      sends to this function some data for testing
+        puts(__FUNCTION__);
+        return SOAP_OK;
+}
+
+
+SOAP_FMAC5 int SOAP_FMAC6 __jpsrv__DeleteFeed(
+        struct soap *soap,
+        struct _jpelem__DeleteFeed *in,
+        struct _jpelem__DeleteFeedResponse *out)
+{
+        // XXX: test client in examples/jpis-test
+        //      sends to this function some data for testing
+        puts(__FUNCTION__);
+        return SOAP_OK;
+}
+
index e662e93..b6ef184 100644 (file)
@@ -19,6 +19,9 @@
 
 #define __jpsrv__UpdateJobs __ns1__UpdateJobs
 #define __jpsrv__QueryJobs __ns1__QueryJobs
+#define __jpsrv__AddFeed __ns1__AddFeed
+#define __jpsrv__GetFeeds __ns1__getFeedIDs
+#define __jpsrv__DeleteFeed __ns1__DeleteFeed
 
 #endif