summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/client')
-rw-r--r--cpp/src/qpid/client/Message.cpp42
-rw-r--r--cpp/src/qpid/client/Message.h42
2 files changed, 42 insertions, 42 deletions
diff --git a/cpp/src/qpid/client/Message.cpp b/cpp/src/qpid/client/Message.cpp
index 7a90bce79d..fed0d95cbc 100644
--- a/cpp/src/qpid/client/Message.cpp
+++ b/cpp/src/qpid/client/Message.cpp
@@ -34,11 +34,11 @@ BasicHeaderProperties* Message::getHeaderProperties(){
return dynamic_cast<BasicHeaderProperties*>(header->getProperties());
}
-std::string& Message::getContentType(){
+const std::string& Message::getContentType(){
return getHeaderProperties()->getContentType();
}
-std::string& Message::getContentEncoding(){
+const std::string& Message::getContentEncoding(){
return getHeaderProperties()->getContentEncoding();
}
@@ -54,19 +54,19 @@ u_int8_t Message::getPriority(){
return getHeaderProperties()->getPriority();
}
-std::string& Message::getCorrelationId(){
+const std::string& Message::getCorrelationId(){
return getHeaderProperties()->getCorrelationId();
}
-std::string& Message::getReplyTo(){
+const std::string& Message::getReplyTo(){
return getHeaderProperties()->getReplyTo();
}
-std::string& Message::getExpiration(){
+const std::string& Message::getExpiration(){
return getHeaderProperties()->getExpiration();
}
-std::string& Message::getMessageId(){
+const std::string& Message::getMessageId(){
return getHeaderProperties()->getMessageId();
}
@@ -74,31 +74,31 @@ u_int64_t Message::getTimestamp(){
return getHeaderProperties()->getTimestamp();
}
-std::string& Message::getType(){
+const std::string& Message::getType(){
return getHeaderProperties()->getType();
}
-std::string& Message::getUserId(){
+const std::string& Message::getUserId(){
return getHeaderProperties()->getUserId();
}
-std::string& Message::getAppId(){
+const std::string& Message::getAppId(){
return getHeaderProperties()->getAppId();
}
-std::string& Message::getClusterId(){
+const std::string& Message::getClusterId(){
return getHeaderProperties()->getClusterId();
}
-void Message::setContentType(std::string& type){
+void Message::setContentType(const std::string& type){
getHeaderProperties()->setContentType(type);
}
-void Message::setContentEncoding(std::string& encoding){
+void Message::setContentEncoding(const std::string& encoding){
getHeaderProperties()->setContentEncoding(encoding);
}
-void Message::setHeaders(FieldTable& headers){
+void Message::setHeaders(const FieldTable& headers){
getHeaderProperties()->setHeaders(headers);
}
@@ -110,19 +110,19 @@ void Message::setPriority(u_int8_t priority){
getHeaderProperties()->setPriority(priority);
}
-void Message::setCorrelationId(std::string& correlationId){
+void Message::setCorrelationId(const std::string& correlationId){
getHeaderProperties()->setCorrelationId(correlationId);
}
-void Message::setReplyTo(std::string& replyTo){
+void Message::setReplyTo(const std::string& replyTo){
getHeaderProperties()->setReplyTo(replyTo);
}
-void Message::setExpiration(std::string& expiration){
+void Message::setExpiration(const std::string& expiration){
getHeaderProperties()->setExpiration(expiration);
}
-void Message::setMessageId(std::string& messageId){
+void Message::setMessageId(const std::string& messageId){
getHeaderProperties()->setMessageId(messageId);
}
@@ -130,18 +130,18 @@ void Message::setTimestamp(u_int64_t timestamp){
getHeaderProperties()->setTimestamp(timestamp);
}
-void Message::setType(std::string& type){
+void Message::setType(const std::string& type){
getHeaderProperties()->setType(type);
}
-void Message::setUserId(std::string& userId){
+void Message::setUserId(const std::string& userId){
getHeaderProperties()->setUserId(userId);
}
-void Message::setAppId(std::string& appId){
+void Message::setAppId(const std::string& appId){
getHeaderProperties()->setAppId(appId);
}
-void Message::setClusterId(std::string& clusterId){
+void Message::setClusterId(const std::string& clusterId){
getHeaderProperties()->setClusterId(clusterId);
}
diff --git a/cpp/src/qpid/client/Message.h b/cpp/src/qpid/client/Message.h
index 8a5399444b..71ca8c8dd4 100644
--- a/cpp/src/qpid/client/Message.h
+++ b/cpp/src/qpid/client/Message.h
@@ -45,35 +45,35 @@ namespace client {
inline u_int64_t getDeliveryTag(){ return deliveryTag; }
- std::string& getContentType();
- std::string& getContentEncoding();
+ const std::string& getContentType();
+ const std::string& getContentEncoding();
qpid::framing::FieldTable& getHeaders();
u_int8_t getDeliveryMode();
u_int8_t getPriority();
- std::string& getCorrelationId();
- std::string& getReplyTo();
- std::string& getExpiration();
- std::string& getMessageId();
+ const std::string& getCorrelationId();
+ const std::string& getReplyTo();
+ const std::string& getExpiration();
+ const std::string& getMessageId();
u_int64_t getTimestamp();
- std::string& getType();
- std::string& getUserId();
- std::string& getAppId();
- std::string& getClusterId();
+ const std::string& getType();
+ const std::string& getUserId();
+ const std::string& getAppId();
+ const std::string& getClusterId();
- void setContentType(std::string& type);
- void setContentEncoding(std::string& encoding);
- void setHeaders(qpid::framing::FieldTable& headers);
+ void setContentType(const std::string& type);
+ void setContentEncoding(const std::string& encoding);
+ void setHeaders(const qpid::framing::FieldTable& headers);
void setDeliveryMode(u_int8_t mode);
void setPriority(u_int8_t priority);
- void setCorrelationId(std::string& correlationId);
- void setReplyTo(std::string& replyTo);
- void setExpiration(std::string& expiration);
- void setMessageId(std::string& messageId);
+ void setCorrelationId(const std::string& correlationId);
+ void setReplyTo(const std::string& replyTo);
+ void setExpiration(const std::string& expiration);
+ void setMessageId(const std::string& messageId);
void setTimestamp(u_int64_t timestamp);
- void setType(std::string& type);
- void setUserId(std::string& userId);
- void setAppId(std::string& appId);
- void setClusterId(std::string& clusterId);
+ void setType(const std::string& type);
+ void setUserId(const std::string& userId);
+ void setAppId(const std::string& appId);
+ void setClusterId(const std::string& clusterId);
friend class Channel;