Apache Qpid - AMQP Messaging for Java JMS, C++, Python, Ruby, and .NET | Apache Qpid Documentation |
00001 #ifndef QMF_SCHEMA_TYPES_H 00002 #define QMF_SCHEMA_TYPES_H 00003 /* 00004 * 00005 * Licensed to the Apache Software Foundation (ASF) under one 00006 * or more contributor license agreements. See the NOTICE file 00007 * distributed with this work for additional information 00008 * regarding copyright ownership. The ASF licenses this file 00009 * to you under the Apache License, Version 2.0 (the 00010 * "License"); you may not use this file except in compliance 00011 * with the License. You may obtain a copy of the License at 00012 * 00013 * http://www.apache.org/licenses/LICENSE-2.0 00014 * 00015 * Unless required by applicable law or agreed to in writing, 00016 * software distributed under the License is distributed on an 00017 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 00018 * KIND, either express or implied. See the License for the 00019 * specific language governing permissions and limitations 00020 * under the License. 00021 * 00022 */ 00023 00024 namespace qmf { 00025 00026 const int SCHEMA_TYPE_DATA = 1; 00027 const int SCHEMA_TYPE_EVENT = 2; 00028 00029 const int SCHEMA_DATA_VOID = 1; 00030 const int SCHEMA_DATA_BOOL = 2; 00031 const int SCHEMA_DATA_INT = 3; 00032 const int SCHEMA_DATA_FLOAT = 4; 00033 const int SCHEMA_DATA_STRING = 5; 00034 const int SCHEMA_DATA_MAP = 6; 00035 const int SCHEMA_DATA_LIST = 7; 00036 const int SCHEMA_DATA_UUID = 8; 00037 00038 const int ACCESS_READ_CREATE = 1; 00039 const int ACCESS_READ_WRITE = 2; 00040 const int ACCESS_READ_ONLY = 3; 00041 00042 const int DIR_IN = 1; 00043 const int DIR_OUT = 2; 00044 const int DIR_IN_OUT = 3; 00045 00046 const int SEV_EMERG = 0; 00047 const int SEV_ALERT = 1; 00048 const int SEV_CRIT = 2; 00049 const int SEV_ERROR = 3; 00050 const int SEV_WARN = 4; 00051 const int SEV_NOTICE = 5; 00052 const int SEV_INFORM = 6; 00053 const int SEV_DEBUG = 7; 00054 } 00055 00056 #endif