00001 /* 00002 * Licensed to the Apache Software Foundation (ASF) under one or more 00003 * contributor license agreements. See the NOTICE file distributed with 00004 * this work for additional information regarding copyright ownership. 00005 * The ASF licenses this file to You under the Apache License, Version 2.0 00006 * (the "License"); you may not use this file except in compliance with 00007 * the License. You may obtain a copy of the License at 00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.0 00010 * 00011 * Unless required by applicable law or agreed to in writing, software 00012 * distributed under the License is distributed on an "AS IS" BASIS, 00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 * See the License for the specific language governing permissions and 00015 * limitations under the License. 00016 */ 00017 #ifndef _ACTIVEMQ_CMSUTIL_CMSDESTINATIONACCESSOR_H_ 00018 #define _ACTIVEMQ_CMSUTIL_CMSDESTINATIONACCESSOR_H_ 00019 00020 #include <activemq/util/Config.h> 00021 #include <activemq/cmsutil/CmsAccessor.h> 00022 #include <activemq/cmsutil/DynamicDestinationResolver.h> 00023 00024 namespace activemq { 00025 namespace cmsutil { 00026 00035 class AMQCPP_API CmsDestinationAccessor : public CmsAccessor { 00036 private: 00037 00041 DynamicDestinationResolver defaultDestinationResolver; 00042 00046 DestinationResolver* destinationResolver; 00047 00051 bool pubSubDomain; 00052 00053 private: 00054 00055 CmsDestinationAccessor(const CmsDestinationAccessor&); 00056 CmsDestinationAccessor& operator=(const CmsDestinationAccessor&); 00057 00058 public: 00059 00060 CmsDestinationAccessor(); 00061 00062 virtual ~CmsDestinationAccessor(); 00063 00064 virtual bool isPubSubDomain() const { 00065 return this->pubSubDomain; 00066 } 00067 00068 virtual void setPubSubDomain( bool pubSubDomain ) { 00069 this->pubSubDomain = pubSubDomain; 00070 } 00071 00072 virtual DestinationResolver* getDestinationResolver() { 00073 return destinationResolver; 00074 } 00075 00076 virtual const DestinationResolver* getDestinationResolver() const { 00077 return destinationResolver; 00078 } 00079 00080 virtual void setDestinationResolver(DestinationResolver* destRes) { 00081 this->destinationResolver = destRes; 00082 } 00083 00084 protected: 00085 00086 virtual void init(); 00087 00088 virtual void destroy(); 00089 00090 virtual cms::Destination* resolveDestinationName(cms::Session* session, const std::string& destName); 00091 00092 virtual void checkDestinationResolver(); 00093 00094 }; 00095 00096 }} 00097 00098 #endif /* _ACTIVEMQ_CMSUTIL_CMSDESTINATIONACCESSOR_H_ */
1.6.1