1 /*-----------------------------------------------------------------------------
 2 Name:      MethodName.cpp
 3 Project:   xmlBlaster.org
 4 Copyright: xmlBlaster.org, see xmlBlaster-LICENSE file
 5 Comment:   Holding some constants, see MethodName.h for a description
 6 -----------------------------------------------------------------------------*/
 7 #include <util/MethodName.h>
 8 
 9 namespace org { namespace xmlBlaster {
10   namespace util { namespace MethodName {
11 
12 // See org.xmlBlaster.util.def.MethodName.java
13 const std::string CONNECT = "connect";
14 const std::string DISCONNECT = "disconnect";
15 const std::string GET = "get";
16 const std::string ERASE = "erase";
17 const std::string PUBLISH = "publish";
18 const std::string PUBLISH_ARR = "publishArr";
19 const std::string PUBLISH_ONEWAY = "publishOneway";
20 const std::string SUBSCRIBE = "subscribe";
21 const std::string UNSUBSCRIBE = "unSubscribe";
22 const std::string UPDATE = "update";
23 const std::string UPDATE_ONEWAY = "updateOneway";
24 const std::string PING = "ping";
25 const std::string DUMMY = "dummy";
26 const std::string UNKNOWN = "unknown";
27 
28 }}}} // namespace 


syntax highlighted by Code2HTML, v. 0.9.1