bes  Updated for version 3.20.6
BESResponseNames.h
1 // BESResponseNames.h
2 
3 // This file is part of bes, A C++ back-end server implementation framework
4 // for the OPeNDAP Data Access Protocol.
5 
6 // Copyright (c) 2004-2009 University Corporation for Atmospheric Research
7 // Author: Patrick West <pwest@ucar.edu> and Jose Garcia <jgarcia@ucar.edu>
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU Lesser General Public
11 // License as published by the Free Software Foundation; either
12 // version 2.1 of the License, or (at your option) any later version.
13 //
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 // Lesser General Public License for more details.
18 //
19 // You should have received a copy of the GNU Lesser General Public
20 // License along with this library; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 //
23 // You can contact University Corporation for Atmospheric Research at
24 // 3080 Center Green Drive, Boulder, CO 80301
25 
26 // (c) COPYRIGHT University Corporation for Atmospheric Research 2004-2005
27 // Please read the full copyright statement in the file COPYRIGHT_UCAR.
28 //
29 // Authors:
30 // pwest Patrick West <pwest@ucar.edu>
31 // jgarcia Jose Garcia <jgarcia@ucar.edu>
32 
33 #ifndef D_BESResponseNames_H
34 #define D_BESResponseNames_H 1
35 
57 #define SET_RESPONSE "set"
58 #define SETCONTAINER "set.container"
59 #define SETCONTAINER_STR "setContainer"
60 #define SET_CONTEXT "set.context"
61 #define SET_CONTEXT_STR "setContext"
62 
63 #define DEFINE_RESPONSE "define"
64 #define DEFINE_RESPONSE_STR "define"
65 
66 #define SEND_RESPONSE "send"
67 
68 #define GET_RESPONSE "get"
69 #define STREAM_RESPONSE "get.stream"
70 #define STREAM_SERVICE "stream"
71 #define STREAM_RESPONSE_STR "getStream"
72 
73 #define SHOW_RESPONSE "show"
74 #define HELP_RESPONSE "show.help"
75 #define HELP_RESPONSE_STR "showHelp"
76 #define PROCESS_RESPONSE "show.process"
77 #define PROCESS_RESPONSE_STR "showProcess"
78 #define VERS_RESPONSE "show.version"
79 #define VERS_RESPONSE_STR "showVersion"
80 #define SHOWCONTAINERS_RESPONSE "show.containers"
81 #define SHOWCONTAINERS_RESPONSE_STR "showContainers"
82 #define SHOWDEFS_RESPONSE "show.definitions"
83 #define SHOWDEFS_RESPONSE_STR "showDefinitions"
84 #define CONFIG_RESPONSE "show.config"
85 #define CONFIG_RESPONSE_STR "showConfig"
86 #define STATUS_RESPONSE "show.status"
87 #define STATUS_RESPONSE_STR "showStatus"
88 #define SERVICE_RESPONSE "show.servicedescriptions"
89 #define SERVICE_RESPONSE_STR "showServiceDescriptions"
90 #define SHOW_CONTEXT "show.context"
91 #define SHOW_CONTEXT_STR "showContext"
92 #define SHOW_ERROR "show.error"
93 #define SHOW_ERROR_STR "showError"
94 
95 #define DELETE_RESPONSE "delete"
96 #define DELETE_CONTAINER "delete.container"
97 #define DELETE_CONTAINER_STR "deleteContainer"
98 #define DELETE_CONTAINERS "delete.containers"
99 #define DELETE_CONTAINERS_STR "deleteContainers"
100 #define DELETE_DEFINITION "delete.definition"
101 #define DELETE_DEFINITION_STR "deleteDefinition"
102 #define DELETE_DEFINITIONS "delete.definitions"
103 #define DELETE_DEFINITIONS_STR "deleteDefinitions"
104 
105 #endif // E_BESResponseNames_H
106