damitha 2003/07/08 05:22:53
Modified: c/src/wsdd WSDDDocument.h WSDDService.cpp WSDDService.h
Log:
Revision Changes Path
1.3 +3 -3 xml-axis/c/src/wsdd/WSDDDocument.h
Index: WSDDDocument.h
===================================================================
RCS file: /home/cvs/xml-axis/c/src/wsdd/WSDDDocument.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- WSDDDocument.h 30 Jun 2003 14:05:04 -0000 1.2
+++ WSDDDocument.h 8 Jul 2003 12:22:52 -0000 1.3
@@ -115,9 +115,9 @@
~WSDDDocument();
int ParseDocument(string& sWSDD);
int GetDeployment(string& sWSDD, WSDDDeployment * dep);
- void startElement(const XMLCh *const uri,
- const XMLCh *const localname,
- const XMLCh *const qname,
+ void startElement(const XMLCh *const uri,
+ const XMLCh *const localname,
+ const XMLCh *const qname,
const Attributes &attrs);
void characters (const XMLCh *const chars, const unsigned int length);
void endElement (const XMLCh *const uri,
1.2 +12 -0 xml-axis/c/src/wsdd/WSDDService.cpp
Index: WSDDService.cpp
===================================================================
RCS file: /home/cvs/xml-axis/c/src/wsdd/WSDDService.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- WSDDService.cpp 25 Jun 2003 05:55:48 -0000 1.1
+++ WSDDService.cpp 8 Jul 2003 12:22:52 -0000 1.2
@@ -67,6 +67,7 @@
#include "WSDDService.h"
#include <iostream>
+#include "../common/Debug.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
@@ -136,6 +137,7 @@
void WSDDService::SetRequestFlowHandlers(WSDDHandlerList * reqFlowHList)
{
+ DEBUG1("WSDDService::SetRequestFlowHandlers");
m_RequestHandlers = reqFlowHList;
}
@@ -163,4 +165,14 @@
list<string> WSDDService::GetAllowedRoles()
{
return m_AllowedRoles;
+}
+
+void WSDDService::SetIsServiceAllowed(int m_IsServiceAllowed)
+{
+ m_IsServiceAllowed = m_IsServiceAllowed;
+}
+
+int WSDDService::GetIsServiceAllowed()
+{
+ return m_IsServiceAllowed;
}
1.2 +3 -0 xml-axis/c/src/wsdd/WSDDService.h
Index: WSDDService.h
===================================================================
RCS file: /home/cvs/xml-axis/c/src/wsdd/WSDDService.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- WSDDService.h 25 Jun 2003 05:55:48 -0000 1.1
+++ WSDDService.h 8 Jul 2003 12:22:52 -0000 1.2
@@ -93,6 +93,8 @@
WSDDHandlerList* GetRequestFlowHandlers();
void SetAllowedRoles(string& sRole);
list<string> GetAllowedRoles();
+ void SetIsServiceAllowed(int m_IsServiceAllowed);
+ int GetIsServiceAllowed();
WSDDService();
virtual ~WSDDService();
@@ -102,6 +104,7 @@
WSDDHandlerList * m_RequestHandlers;
WSDDHandlerList * m_ResponseHandlers;
list<string> m_AllowedRoles;
+ int m_IsServiceAllowed;
};
typedef map<string, WSDDService*> WSDDServiceMap;