00001 /*----------------------------------------------------------------------------- 00002 Name: MethodName.cpp 00003 Project: xmlBlaster.org 00004 Copyright: xmlBlaster.org, see xmlBlaster-LICENSE file 00005 Comment: Holding some constants, see MethodName.h for a description 00006 -----------------------------------------------------------------------------*/ 00007 #include <util/MethodName.h> 00008 00009 namespace org { namespace xmlBlaster { 00010 namespace util { namespace MethodName { 00011 00012 // See org.xmlBlaster.util.def.MethodName.java 00013 const std::string CONNECT = "connect"; 00014 const std::string DISCONNECT = "disconnect"; 00015 const std::string GET = "get"; 00016 const std::string ERASE = "erase"; 00017 const std::string PUBLISH = "publish"; 00018 const std::string PUBLISH_ARR = "publishArr"; 00019 const std::string PUBLISH_ONEWAY = "publishOneway"; 00020 const std::string SUBSCRIBE = "subscribe"; 00021 const std::string UNSUBSCRIBE = "unSubscribe"; 00022 const std::string UPDATE = "update"; 00023 const std::string UPDATE_ONEWAY = "updateOneway"; 00024 const std::string PING = "ping"; 00025 const std::string DUMMY = "dummy"; 00026 const std::string UNKNOWN = "unknown"; 00027 00028 }}}} // namespace 00029 00030