OPeNDAP Hyrax Back End Server (BES) Updated for version 3.8.3
BESDapNames.h
Go to the documentation of this file.
00001 // BESDapNames.h
00002 
00003 // This file is part of bes, A C++ back-end server implementation framework
00004 // for the OPeNDAP Data Access Protocol.
00005 
00006 // Copyright (c) 2004-2009 University Corporation for Atmospheric Research
00007 // Author: Patrick West <pwest@ucar.edu> and Jose Garcia <jgarcia@ucar.edu>
00008 //
00009 // This library is free software; you can redistribute it and/or
00010 // modify it under the terms of the GNU Lesser General Public
00011 // License as published by the Free Software Foundation; either
00012 // version 2.1 of the License, or (at your option) any later version.
00013 // 
00014 // This library is distributed in the hope that it will be useful,
00015 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00017 // Lesser General Public License for more details.
00018 // 
00019 // You should have received a copy of the GNU Lesser General Public
00020 // License along with this library; if not, write to the Free Software
00021 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00022 //
00023 // You can contact University Corporation for Atmospheric Research at
00024 // 3080 Center Green Drive, Boulder, CO 80301
00025  
00026 // (c) COPYRIGHT University Corporation for Atmospheric Research 2004-2005
00027 // Please read the full copyright statement in the file COPYRIGHT_UCAR.
00028 //
00029 // Authors:
00030 //      pwest       Patrick West <pwest@ucar.edu>
00031 //      jgarcia     Jose Garcia <jgarcia@ucar.edu>
00032 
00033 #ifndef D_BESDapNames_H
00034 #define D_BESDapNames_H 1
00035 
00052 #define OPENDAP_SERVICE "dap"
00053 #define DAP2_FORMAT "dap2"
00054 #define DAS_RESPONSE "get.das"
00055 #define DAS_SERVICE "das"
00056 #define DAS_DESCRIPT "OPeNDAP Data Attribute Structure"
00057 #define DAS_RESPONSE_STR "getDAS"
00058 #define DDS_RESPONSE "get.dds"
00059 #define DDS_SERVICE "dds"
00060 #define DDS_DESCRIPT "OPeNDAP Data Description Structure"
00061 #define DDS_RESPONSE_STR "getDDS"
00062 #define DDX_RESPONSE "get.ddx"
00063 #define DDX_SERVICE "ddx"
00064 #define DDX_DESCRIPT "OPeNDAP Data Description and Attribute XML Document"
00065 #define DDX_RESPONSE_STR "getDDX"
00066 #define DATA_RESPONSE "get.dods"
00067 #define DATA_SERVICE "dods"
00068 #define DATA_DESCRIPT "OPeNDAP Data Object"
00069 #define DATA_RESPONSE_STR "getDODS"
00070 #define DATADDX_RESPONSE "get.dataddx"
00071 #define DATADDX_SERVICE "dataddx"
00072 #define DATADDX_DESCRIPT "OPeNDAP Data Description and Attributes in DDX format and Data Object"
00073 #define DATADDX_RESPONSE_STR "getDataDDX"
00074 
00075 #define CATALOG_RESPONSE "show.catalog"
00076 #define CATALOG_RESPONSE_STR "showCatalog"
00077 #define SHOW_INFO_RESPONSE "show.info"
00078 #define SHOW_INFO_RESPONSE_STR "showInfo"
00079 
00080 /*
00081  * DataDDX data names
00082  */
00083 #define DATADDX_STARTID "dataddx_startid"
00084 #define DATADDX_BOUNDARY "dataddx_boundary"
00085 
00086 /*
00087  * show catalog/info data names
00088  */
00089 #define CATALOG_OR_INFO "catalog_or_info"
00090 
00091 #endif // E_BESDapNames_H
00092