From 96bab78790a169251f26159fd9c796af3c005b4a Mon Sep 17 00:00:00 2001 From: "haowei.yao" Date: Fri, 29 Mar 2019 10:02:01 +0800 Subject: [PATCH] =?UTF-8?q?ONS=20SDK=20Auto=20Released=20By=20wenting.ywt,?= =?UTF-8?q?Version=EF=BC=9A1.35.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: haowei.yao --- CHANGELOG | 5 +++++ VERSION | 2 +- ons/src/model/OnsConsumerAccumulateRequest.cc | 8 ++++---- .../model/OnsConsumerGetConnectionRequest.cc | 6 +++--- .../model/OnsConsumerResetOffsetRequest.cc | 12 +++++------ ons/src/model/OnsConsumerStatusRequest.cc | 10 +++++----- ons/src/model/OnsConsumerTimeSpanRequest.cc | 8 ++++---- ons/src/model/OnsDLQMessageGetByIdRequest.cc | 8 ++++---- .../OnsDLQMessagePageQueryByGroupIdRequest.cc | 16 +++++++-------- .../model/OnsDLQMessageResendByIdRequest.cc | 8 ++++---- .../model/OnsGroupConsumerUpdateRequest.cc | 8 ++++---- ons/src/model/OnsGroupCreateRequest.cc | 8 ++++---- ons/src/model/OnsGroupDeleteRequest.cc | 6 +++--- ons/src/model/OnsGroupListRequest.cc | 6 +++--- ons/src/model/OnsGroupSubDetailRequest.cc | 6 +++--- ons/src/model/OnsInstanceBaseInfoRequest.cc | 4 ++-- ons/src/model/OnsInstanceCreateRequest.cc | 6 +++--- ons/src/model/OnsInstanceDeleteRequest.cc | 4 ++-- .../model/OnsInstanceInServiceListRequest.cc | 2 +- ons/src/model/OnsInstanceUpdateRequest.cc | 8 ++++---- ons/src/model/OnsMessageGetByKeyRequest.cc | 8 ++++---- ons/src/model/OnsMessageGetByMsgIdRequest.cc | 8 ++++---- .../OnsMessagePageQueryByTopicRequest.cc | 16 +++++++-------- ons/src/model/OnsMessagePushRequest.cc | 12 +++++------ ons/src/model/OnsMessageSendRequest.cc | 12 +++++------ ons/src/model/OnsMessageTraceRequest.cc | 8 ++++---- ons/src/model/OnsMqttGroupIdCreateRequest.cc | 10 +++++----- ons/src/model/OnsMqttGroupIdDeleteRequest.cc | 8 ++++---- ons/src/model/OnsMqttGroupIdListRequest.cc | 4 ++-- .../OnsMqttQueryClientByClientIdRequest.cc | 6 +++--- .../OnsMqttQueryClientByGroupIdRequest.cc | 6 +++--- .../model/OnsMqttQueryClientByTopicRequest.cc | 8 ++++---- .../model/OnsMqttQueryHistoryOnlineRequest.cc | 10 +++++----- .../model/OnsMqttQueryMsgTransTrendRequest.cc | 20 +++++++++---------- ons/src/model/OnsRegionListRequest.cc | 2 +- ons/src/model/OnsTopicCreateRequest.cc | 10 +++++----- ons/src/model/OnsTopicDeleteRequest.cc | 6 +++--- ons/src/model/OnsTopicListRequest.cc | 6 +++--- ons/src/model/OnsTopicStatusRequest.cc | 6 +++--- ons/src/model/OnsTopicSubDetailRequest.cc | 6 +++--- ons/src/model/OnsTopicUpdateRequest.cc | 8 ++++---- ons/src/model/OnsTraceGetResultRequest.cc | 4 ++-- ons/src/model/OnsTraceQueryByMsgIdRequest.cc | 12 +++++------ ons/src/model/OnsTraceQueryByMsgKeyRequest.cc | 12 +++++------ .../model/OnsTrendGroupOutputTpsRequest.cc | 16 +++++++-------- ons/src/model/OnsTrendTopicInputTpsRequest.cc | 14 ++++++------- ons/src/model/OnsWarnCreateRequest.cc | 20 +++++++++---------- ons/src/model/OnsWarnDeleteRequest.cc | 8 ++++---- 48 files changed, 206 insertions(+), 201 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index ed0eb65e1..b95ca69fe 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +2019-03-29 Version: 1.35.3 +1, Add DLQ message openAPI. +2, Add Query the subscription relational openAPI. +3, Remove white list restrictions. + 2019-03-28 Version: 1.35.2 1, release bssopenapi diff --git a/VERSION b/VERSION index 28afa2fd1..15e3e2513 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.35.2 \ No newline at end of file +1.35.3 \ No newline at end of file diff --git a/ons/src/model/OnsConsumerAccumulateRequest.cc b/ons/src/model/OnsConsumerAccumulateRequest.cc index 23c7bb44c..67c957efb 100644 --- a/ons/src/model/OnsConsumerAccumulateRequest.cc +++ b/ons/src/model/OnsConsumerAccumulateRequest.cc @@ -33,7 +33,7 @@ long OnsConsumerAccumulateRequest::getPreventCache()const void OnsConsumerAccumulateRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsConsumerAccumulateRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsConsumerAccumulateRequest::getInstanceId()const void OnsConsumerAccumulateRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsConsumerAccumulateRequest::getGroupId()const @@ -55,7 +55,7 @@ std::string OnsConsumerAccumulateRequest::getGroupId()const void OnsConsumerAccumulateRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } bool OnsConsumerAccumulateRequest::getDetail()const @@ -66,6 +66,6 @@ bool OnsConsumerAccumulateRequest::getDetail()const void OnsConsumerAccumulateRequest::setDetail(bool detail) { detail_ = detail; - setParameter("Detail", detail ? "true" : "false"); + setCoreParameter("Detail", detail ? "true" : "false"); } diff --git a/ons/src/model/OnsConsumerGetConnectionRequest.cc b/ons/src/model/OnsConsumerGetConnectionRequest.cc index 607b753d8..619822f65 100644 --- a/ons/src/model/OnsConsumerGetConnectionRequest.cc +++ b/ons/src/model/OnsConsumerGetConnectionRequest.cc @@ -33,7 +33,7 @@ long OnsConsumerGetConnectionRequest::getPreventCache()const void OnsConsumerGetConnectionRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsConsumerGetConnectionRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsConsumerGetConnectionRequest::getInstanceId()const void OnsConsumerGetConnectionRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsConsumerGetConnectionRequest::getGroupId()const @@ -55,6 +55,6 @@ std::string OnsConsumerGetConnectionRequest::getGroupId()const void OnsConsumerGetConnectionRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } diff --git a/ons/src/model/OnsConsumerResetOffsetRequest.cc b/ons/src/model/OnsConsumerResetOffsetRequest.cc index d6c37f642..e71c64e98 100644 --- a/ons/src/model/OnsConsumerResetOffsetRequest.cc +++ b/ons/src/model/OnsConsumerResetOffsetRequest.cc @@ -33,7 +33,7 @@ long OnsConsumerResetOffsetRequest::getPreventCache()const void OnsConsumerResetOffsetRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsConsumerResetOffsetRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsConsumerResetOffsetRequest::getInstanceId()const void OnsConsumerResetOffsetRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsConsumerResetOffsetRequest::getGroupId()const @@ -55,7 +55,7 @@ std::string OnsConsumerResetOffsetRequest::getGroupId()const void OnsConsumerResetOffsetRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsConsumerResetOffsetRequest::getTopic()const @@ -66,7 +66,7 @@ std::string OnsConsumerResetOffsetRequest::getTopic()const void OnsConsumerResetOffsetRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } long OnsConsumerResetOffsetRequest::getResetTimestamp()const @@ -77,7 +77,7 @@ long OnsConsumerResetOffsetRequest::getResetTimestamp()const void OnsConsumerResetOffsetRequest::setResetTimestamp(long resetTimestamp) { resetTimestamp_ = resetTimestamp; - setParameter("ResetTimestamp", std::to_string(resetTimestamp)); + setCoreParameter("ResetTimestamp", std::to_string(resetTimestamp)); } int OnsConsumerResetOffsetRequest::getType()const @@ -88,6 +88,6 @@ int OnsConsumerResetOffsetRequest::getType()const void OnsConsumerResetOffsetRequest::setType(int type) { type_ = type; - setParameter("Type", std::to_string(type)); + setCoreParameter("Type", std::to_string(type)); } diff --git a/ons/src/model/OnsConsumerStatusRequest.cc b/ons/src/model/OnsConsumerStatusRequest.cc index 427fd6cc7..f4244156e 100644 --- a/ons/src/model/OnsConsumerStatusRequest.cc +++ b/ons/src/model/OnsConsumerStatusRequest.cc @@ -33,7 +33,7 @@ long OnsConsumerStatusRequest::getPreventCache()const void OnsConsumerStatusRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsConsumerStatusRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsConsumerStatusRequest::getInstanceId()const void OnsConsumerStatusRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } bool OnsConsumerStatusRequest::getNeedJstack()const @@ -55,7 +55,7 @@ bool OnsConsumerStatusRequest::getNeedJstack()const void OnsConsumerStatusRequest::setNeedJstack(bool needJstack) { needJstack_ = needJstack; - setParameter("NeedJstack", needJstack ? "true" : "false"); + setCoreParameter("NeedJstack", needJstack ? "true" : "false"); } std::string OnsConsumerStatusRequest::getGroupId()const @@ -66,7 +66,7 @@ std::string OnsConsumerStatusRequest::getGroupId()const void OnsConsumerStatusRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } bool OnsConsumerStatusRequest::getDetail()const @@ -77,6 +77,6 @@ bool OnsConsumerStatusRequest::getDetail()const void OnsConsumerStatusRequest::setDetail(bool detail) { detail_ = detail; - setParameter("Detail", detail ? "true" : "false"); + setCoreParameter("Detail", detail ? "true" : "false"); } diff --git a/ons/src/model/OnsConsumerTimeSpanRequest.cc b/ons/src/model/OnsConsumerTimeSpanRequest.cc index c35be961e..c4c6b49e3 100644 --- a/ons/src/model/OnsConsumerTimeSpanRequest.cc +++ b/ons/src/model/OnsConsumerTimeSpanRequest.cc @@ -33,7 +33,7 @@ long OnsConsumerTimeSpanRequest::getPreventCache()const void OnsConsumerTimeSpanRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsConsumerTimeSpanRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsConsumerTimeSpanRequest::getInstanceId()const void OnsConsumerTimeSpanRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsConsumerTimeSpanRequest::getGroupId()const @@ -55,7 +55,7 @@ std::string OnsConsumerTimeSpanRequest::getGroupId()const void OnsConsumerTimeSpanRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsConsumerTimeSpanRequest::getTopic()const @@ -66,6 +66,6 @@ std::string OnsConsumerTimeSpanRequest::getTopic()const void OnsConsumerTimeSpanRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } diff --git a/ons/src/model/OnsDLQMessageGetByIdRequest.cc b/ons/src/model/OnsDLQMessageGetByIdRequest.cc index 9303f4896..d81f01d69 100644 --- a/ons/src/model/OnsDLQMessageGetByIdRequest.cc +++ b/ons/src/model/OnsDLQMessageGetByIdRequest.cc @@ -33,7 +33,7 @@ long OnsDLQMessageGetByIdRequest::getPreventCache()const void OnsDLQMessageGetByIdRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsDLQMessageGetByIdRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsDLQMessageGetByIdRequest::getInstanceId()const void OnsDLQMessageGetByIdRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsDLQMessageGetByIdRequest::getGroupId()const @@ -55,7 +55,7 @@ std::string OnsDLQMessageGetByIdRequest::getGroupId()const void OnsDLQMessageGetByIdRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsDLQMessageGetByIdRequest::getMsgId()const @@ -66,6 +66,6 @@ std::string OnsDLQMessageGetByIdRequest::getMsgId()const void OnsDLQMessageGetByIdRequest::setMsgId(const std::string& msgId) { msgId_ = msgId; - setParameter("MsgId", msgId); + setCoreParameter("MsgId", msgId); } diff --git a/ons/src/model/OnsDLQMessagePageQueryByGroupIdRequest.cc b/ons/src/model/OnsDLQMessagePageQueryByGroupIdRequest.cc index b206c8be2..7093a6d72 100644 --- a/ons/src/model/OnsDLQMessagePageQueryByGroupIdRequest.cc +++ b/ons/src/model/OnsDLQMessagePageQueryByGroupIdRequest.cc @@ -33,7 +33,7 @@ long OnsDLQMessagePageQueryByGroupIdRequest::getPreventCache()const void OnsDLQMessagePageQueryByGroupIdRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsDLQMessagePageQueryByGroupIdRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsDLQMessagePageQueryByGroupIdRequest::getInstanceId()const void OnsDLQMessagePageQueryByGroupIdRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsDLQMessagePageQueryByGroupIdRequest::getGroupId()const @@ -55,7 +55,7 @@ std::string OnsDLQMessagePageQueryByGroupIdRequest::getGroupId()const void OnsDLQMessagePageQueryByGroupIdRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } int OnsDLQMessagePageQueryByGroupIdRequest::getPageSize()const @@ -66,7 +66,7 @@ int OnsDLQMessagePageQueryByGroupIdRequest::getPageSize()const void OnsDLQMessagePageQueryByGroupIdRequest::setPageSize(int pageSize) { pageSize_ = pageSize; - setParameter("PageSize", std::to_string(pageSize)); + setCoreParameter("PageSize", std::to_string(pageSize)); } long OnsDLQMessagePageQueryByGroupIdRequest::getEndTime()const @@ -77,7 +77,7 @@ long OnsDLQMessagePageQueryByGroupIdRequest::getEndTime()const void OnsDLQMessagePageQueryByGroupIdRequest::setEndTime(long endTime) { endTime_ = endTime; - setParameter("EndTime", std::to_string(endTime)); + setCoreParameter("EndTime", std::to_string(endTime)); } long OnsDLQMessagePageQueryByGroupIdRequest::getBeginTime()const @@ -88,7 +88,7 @@ long OnsDLQMessagePageQueryByGroupIdRequest::getBeginTime()const void OnsDLQMessagePageQueryByGroupIdRequest::setBeginTime(long beginTime) { beginTime_ = beginTime; - setParameter("BeginTime", std::to_string(beginTime)); + setCoreParameter("BeginTime", std::to_string(beginTime)); } int OnsDLQMessagePageQueryByGroupIdRequest::getCurrentPage()const @@ -99,7 +99,7 @@ int OnsDLQMessagePageQueryByGroupIdRequest::getCurrentPage()const void OnsDLQMessagePageQueryByGroupIdRequest::setCurrentPage(int currentPage) { currentPage_ = currentPage; - setParameter("CurrentPage", std::to_string(currentPage)); + setCoreParameter("CurrentPage", std::to_string(currentPage)); } std::string OnsDLQMessagePageQueryByGroupIdRequest::getTaskId()const @@ -110,6 +110,6 @@ std::string OnsDLQMessagePageQueryByGroupIdRequest::getTaskId()const void OnsDLQMessagePageQueryByGroupIdRequest::setTaskId(const std::string& taskId) { taskId_ = taskId; - setParameter("TaskId", taskId); + setCoreParameter("TaskId", taskId); } diff --git a/ons/src/model/OnsDLQMessageResendByIdRequest.cc b/ons/src/model/OnsDLQMessageResendByIdRequest.cc index 6ec5831b5..38a2fb24f 100644 --- a/ons/src/model/OnsDLQMessageResendByIdRequest.cc +++ b/ons/src/model/OnsDLQMessageResendByIdRequest.cc @@ -33,7 +33,7 @@ long OnsDLQMessageResendByIdRequest::getPreventCache()const void OnsDLQMessageResendByIdRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsDLQMessageResendByIdRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsDLQMessageResendByIdRequest::getInstanceId()const void OnsDLQMessageResendByIdRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsDLQMessageResendByIdRequest::getGroupId()const @@ -55,7 +55,7 @@ std::string OnsDLQMessageResendByIdRequest::getGroupId()const void OnsDLQMessageResendByIdRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsDLQMessageResendByIdRequest::getMsgId()const @@ -66,6 +66,6 @@ std::string OnsDLQMessageResendByIdRequest::getMsgId()const void OnsDLQMessageResendByIdRequest::setMsgId(const std::string& msgId) { msgId_ = msgId; - setParameter("MsgId", msgId); + setCoreParameter("MsgId", msgId); } diff --git a/ons/src/model/OnsGroupConsumerUpdateRequest.cc b/ons/src/model/OnsGroupConsumerUpdateRequest.cc index 89b7a2ad5..1df074701 100644 --- a/ons/src/model/OnsGroupConsumerUpdateRequest.cc +++ b/ons/src/model/OnsGroupConsumerUpdateRequest.cc @@ -33,7 +33,7 @@ long OnsGroupConsumerUpdateRequest::getPreventCache()const void OnsGroupConsumerUpdateRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } bool OnsGroupConsumerUpdateRequest::getReadEnable()const @@ -44,7 +44,7 @@ bool OnsGroupConsumerUpdateRequest::getReadEnable()const void OnsGroupConsumerUpdateRequest::setReadEnable(bool readEnable) { readEnable_ = readEnable; - setParameter("ReadEnable", readEnable ? "true" : "false"); + setCoreParameter("ReadEnable", readEnable ? "true" : "false"); } std::string OnsGroupConsumerUpdateRequest::getInstanceId()const @@ -55,7 +55,7 @@ std::string OnsGroupConsumerUpdateRequest::getInstanceId()const void OnsGroupConsumerUpdateRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsGroupConsumerUpdateRequest::getGroupId()const @@ -66,6 +66,6 @@ std::string OnsGroupConsumerUpdateRequest::getGroupId()const void OnsGroupConsumerUpdateRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } diff --git a/ons/src/model/OnsGroupCreateRequest.cc b/ons/src/model/OnsGroupCreateRequest.cc index 828280000..7f45f5169 100644 --- a/ons/src/model/OnsGroupCreateRequest.cc +++ b/ons/src/model/OnsGroupCreateRequest.cc @@ -33,7 +33,7 @@ long OnsGroupCreateRequest::getPreventCache()const void OnsGroupCreateRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsGroupCreateRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsGroupCreateRequest::getInstanceId()const void OnsGroupCreateRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsGroupCreateRequest::getGroupId()const @@ -55,7 +55,7 @@ std::string OnsGroupCreateRequest::getGroupId()const void OnsGroupCreateRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsGroupCreateRequest::getRemark()const @@ -66,6 +66,6 @@ std::string OnsGroupCreateRequest::getRemark()const void OnsGroupCreateRequest::setRemark(const std::string& remark) { remark_ = remark; - setParameter("Remark", remark); + setCoreParameter("Remark", remark); } diff --git a/ons/src/model/OnsGroupDeleteRequest.cc b/ons/src/model/OnsGroupDeleteRequest.cc index e6ef10d72..fd0c0ea22 100644 --- a/ons/src/model/OnsGroupDeleteRequest.cc +++ b/ons/src/model/OnsGroupDeleteRequest.cc @@ -33,7 +33,7 @@ long OnsGroupDeleteRequest::getPreventCache()const void OnsGroupDeleteRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsGroupDeleteRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsGroupDeleteRequest::getInstanceId()const void OnsGroupDeleteRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsGroupDeleteRequest::getGroupId()const @@ -55,6 +55,6 @@ std::string OnsGroupDeleteRequest::getGroupId()const void OnsGroupDeleteRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } diff --git a/ons/src/model/OnsGroupListRequest.cc b/ons/src/model/OnsGroupListRequest.cc index 9af8540f1..b7df804dc 100644 --- a/ons/src/model/OnsGroupListRequest.cc +++ b/ons/src/model/OnsGroupListRequest.cc @@ -33,7 +33,7 @@ long OnsGroupListRequest::getPreventCache()const void OnsGroupListRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsGroupListRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsGroupListRequest::getInstanceId()const void OnsGroupListRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsGroupListRequest::getGroupId()const @@ -55,6 +55,6 @@ std::string OnsGroupListRequest::getGroupId()const void OnsGroupListRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } diff --git a/ons/src/model/OnsGroupSubDetailRequest.cc b/ons/src/model/OnsGroupSubDetailRequest.cc index 0ad0db6af..bd64b6541 100644 --- a/ons/src/model/OnsGroupSubDetailRequest.cc +++ b/ons/src/model/OnsGroupSubDetailRequest.cc @@ -33,7 +33,7 @@ long OnsGroupSubDetailRequest::getPreventCache()const void OnsGroupSubDetailRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsGroupSubDetailRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsGroupSubDetailRequest::getInstanceId()const void OnsGroupSubDetailRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsGroupSubDetailRequest::getGroupId()const @@ -55,6 +55,6 @@ std::string OnsGroupSubDetailRequest::getGroupId()const void OnsGroupSubDetailRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } diff --git a/ons/src/model/OnsInstanceBaseInfoRequest.cc b/ons/src/model/OnsInstanceBaseInfoRequest.cc index 9eab88286..730e47409 100644 --- a/ons/src/model/OnsInstanceBaseInfoRequest.cc +++ b/ons/src/model/OnsInstanceBaseInfoRequest.cc @@ -33,7 +33,7 @@ long OnsInstanceBaseInfoRequest::getPreventCache()const void OnsInstanceBaseInfoRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsInstanceBaseInfoRequest::getInstanceId()const @@ -44,6 +44,6 @@ std::string OnsInstanceBaseInfoRequest::getInstanceId()const void OnsInstanceBaseInfoRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } diff --git a/ons/src/model/OnsInstanceCreateRequest.cc b/ons/src/model/OnsInstanceCreateRequest.cc index 27cc6787c..d05f6826a 100644 --- a/ons/src/model/OnsInstanceCreateRequest.cc +++ b/ons/src/model/OnsInstanceCreateRequest.cc @@ -33,7 +33,7 @@ long OnsInstanceCreateRequest::getPreventCache()const void OnsInstanceCreateRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsInstanceCreateRequest::getInstanceName()const @@ -44,7 +44,7 @@ std::string OnsInstanceCreateRequest::getInstanceName()const void OnsInstanceCreateRequest::setInstanceName(const std::string& instanceName) { instanceName_ = instanceName; - setParameter("InstanceName", instanceName); + setCoreParameter("InstanceName", instanceName); } std::string OnsInstanceCreateRequest::getRemark()const @@ -55,6 +55,6 @@ std::string OnsInstanceCreateRequest::getRemark()const void OnsInstanceCreateRequest::setRemark(const std::string& remark) { remark_ = remark; - setParameter("Remark", remark); + setCoreParameter("Remark", remark); } diff --git a/ons/src/model/OnsInstanceDeleteRequest.cc b/ons/src/model/OnsInstanceDeleteRequest.cc index ab5f2b244..dafba51a5 100644 --- a/ons/src/model/OnsInstanceDeleteRequest.cc +++ b/ons/src/model/OnsInstanceDeleteRequest.cc @@ -33,7 +33,7 @@ long OnsInstanceDeleteRequest::getPreventCache()const void OnsInstanceDeleteRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsInstanceDeleteRequest::getInstanceId()const @@ -44,6 +44,6 @@ std::string OnsInstanceDeleteRequest::getInstanceId()const void OnsInstanceDeleteRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } diff --git a/ons/src/model/OnsInstanceInServiceListRequest.cc b/ons/src/model/OnsInstanceInServiceListRequest.cc index 0f95094ec..34cb5b271 100644 --- a/ons/src/model/OnsInstanceInServiceListRequest.cc +++ b/ons/src/model/OnsInstanceInServiceListRequest.cc @@ -33,6 +33,6 @@ long OnsInstanceInServiceListRequest::getPreventCache()const void OnsInstanceInServiceListRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } diff --git a/ons/src/model/OnsInstanceUpdateRequest.cc b/ons/src/model/OnsInstanceUpdateRequest.cc index c5823c11d..6a15dd6b1 100644 --- a/ons/src/model/OnsInstanceUpdateRequest.cc +++ b/ons/src/model/OnsInstanceUpdateRequest.cc @@ -33,7 +33,7 @@ long OnsInstanceUpdateRequest::getPreventCache()const void OnsInstanceUpdateRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsInstanceUpdateRequest::getInstanceName()const @@ -44,7 +44,7 @@ std::string OnsInstanceUpdateRequest::getInstanceName()const void OnsInstanceUpdateRequest::setInstanceName(const std::string& instanceName) { instanceName_ = instanceName; - setParameter("InstanceName", instanceName); + setCoreParameter("InstanceName", instanceName); } std::string OnsInstanceUpdateRequest::getInstanceId()const @@ -55,7 +55,7 @@ std::string OnsInstanceUpdateRequest::getInstanceId()const void OnsInstanceUpdateRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsInstanceUpdateRequest::getRemark()const @@ -66,6 +66,6 @@ std::string OnsInstanceUpdateRequest::getRemark()const void OnsInstanceUpdateRequest::setRemark(const std::string& remark) { remark_ = remark; - setParameter("Remark", remark); + setCoreParameter("Remark", remark); } diff --git a/ons/src/model/OnsMessageGetByKeyRequest.cc b/ons/src/model/OnsMessageGetByKeyRequest.cc index 00bab7708..66cf94481 100644 --- a/ons/src/model/OnsMessageGetByKeyRequest.cc +++ b/ons/src/model/OnsMessageGetByKeyRequest.cc @@ -33,7 +33,7 @@ long OnsMessageGetByKeyRequest::getPreventCache()const void OnsMessageGetByKeyRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMessageGetByKeyRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMessageGetByKeyRequest::getInstanceId()const void OnsMessageGetByKeyRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMessageGetByKeyRequest::getTopic()const @@ -55,7 +55,7 @@ std::string OnsMessageGetByKeyRequest::getTopic()const void OnsMessageGetByKeyRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } std::string OnsMessageGetByKeyRequest::getKey()const @@ -66,6 +66,6 @@ std::string OnsMessageGetByKeyRequest::getKey()const void OnsMessageGetByKeyRequest::setKey(const std::string& key) { key_ = key; - setParameter("Key", key); + setCoreParameter("Key", key); } diff --git a/ons/src/model/OnsMessageGetByMsgIdRequest.cc b/ons/src/model/OnsMessageGetByMsgIdRequest.cc index 46f25ca10..f92696b79 100644 --- a/ons/src/model/OnsMessageGetByMsgIdRequest.cc +++ b/ons/src/model/OnsMessageGetByMsgIdRequest.cc @@ -33,7 +33,7 @@ long OnsMessageGetByMsgIdRequest::getPreventCache()const void OnsMessageGetByMsgIdRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMessageGetByMsgIdRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMessageGetByMsgIdRequest::getInstanceId()const void OnsMessageGetByMsgIdRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMessageGetByMsgIdRequest::getMsgId()const @@ -55,7 +55,7 @@ std::string OnsMessageGetByMsgIdRequest::getMsgId()const void OnsMessageGetByMsgIdRequest::setMsgId(const std::string& msgId) { msgId_ = msgId; - setParameter("MsgId", msgId); + setCoreParameter("MsgId", msgId); } std::string OnsMessageGetByMsgIdRequest::getTopic()const @@ -66,6 +66,6 @@ std::string OnsMessageGetByMsgIdRequest::getTopic()const void OnsMessageGetByMsgIdRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } diff --git a/ons/src/model/OnsMessagePageQueryByTopicRequest.cc b/ons/src/model/OnsMessagePageQueryByTopicRequest.cc index d58c49e10..7b1b0e078 100644 --- a/ons/src/model/OnsMessagePageQueryByTopicRequest.cc +++ b/ons/src/model/OnsMessagePageQueryByTopicRequest.cc @@ -33,7 +33,7 @@ long OnsMessagePageQueryByTopicRequest::getPreventCache()const void OnsMessagePageQueryByTopicRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMessagePageQueryByTopicRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMessagePageQueryByTopicRequest::getInstanceId()const void OnsMessagePageQueryByTopicRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } int OnsMessagePageQueryByTopicRequest::getPageSize()const @@ -55,7 +55,7 @@ int OnsMessagePageQueryByTopicRequest::getPageSize()const void OnsMessagePageQueryByTopicRequest::setPageSize(int pageSize) { pageSize_ = pageSize; - setParameter("PageSize", std::to_string(pageSize)); + setCoreParameter("PageSize", std::to_string(pageSize)); } std::string OnsMessagePageQueryByTopicRequest::getTopic()const @@ -66,7 +66,7 @@ std::string OnsMessagePageQueryByTopicRequest::getTopic()const void OnsMessagePageQueryByTopicRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } long OnsMessagePageQueryByTopicRequest::getEndTime()const @@ -77,7 +77,7 @@ long OnsMessagePageQueryByTopicRequest::getEndTime()const void OnsMessagePageQueryByTopicRequest::setEndTime(long endTime) { endTime_ = endTime; - setParameter("EndTime", std::to_string(endTime)); + setCoreParameter("EndTime", std::to_string(endTime)); } long OnsMessagePageQueryByTopicRequest::getBeginTime()const @@ -88,7 +88,7 @@ long OnsMessagePageQueryByTopicRequest::getBeginTime()const void OnsMessagePageQueryByTopicRequest::setBeginTime(long beginTime) { beginTime_ = beginTime; - setParameter("BeginTime", std::to_string(beginTime)); + setCoreParameter("BeginTime", std::to_string(beginTime)); } int OnsMessagePageQueryByTopicRequest::getCurrentPage()const @@ -99,7 +99,7 @@ int OnsMessagePageQueryByTopicRequest::getCurrentPage()const void OnsMessagePageQueryByTopicRequest::setCurrentPage(int currentPage) { currentPage_ = currentPage; - setParameter("CurrentPage", std::to_string(currentPage)); + setCoreParameter("CurrentPage", std::to_string(currentPage)); } std::string OnsMessagePageQueryByTopicRequest::getTaskId()const @@ -110,6 +110,6 @@ std::string OnsMessagePageQueryByTopicRequest::getTaskId()const void OnsMessagePageQueryByTopicRequest::setTaskId(const std::string& taskId) { taskId_ = taskId; - setParameter("TaskId", taskId); + setCoreParameter("TaskId", taskId); } diff --git a/ons/src/model/OnsMessagePushRequest.cc b/ons/src/model/OnsMessagePushRequest.cc index 38236f527..9edd31fdb 100644 --- a/ons/src/model/OnsMessagePushRequest.cc +++ b/ons/src/model/OnsMessagePushRequest.cc @@ -33,7 +33,7 @@ long OnsMessagePushRequest::getPreventCache()const void OnsMessagePushRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMessagePushRequest::getClientId()const @@ -44,7 +44,7 @@ std::string OnsMessagePushRequest::getClientId()const void OnsMessagePushRequest::setClientId(const std::string& clientId) { clientId_ = clientId; - setParameter("ClientId", clientId); + setCoreParameter("ClientId", clientId); } std::string OnsMessagePushRequest::getInstanceId()const @@ -55,7 +55,7 @@ std::string OnsMessagePushRequest::getInstanceId()const void OnsMessagePushRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMessagePushRequest::getGroupId()const @@ -66,7 +66,7 @@ std::string OnsMessagePushRequest::getGroupId()const void OnsMessagePushRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsMessagePushRequest::getMsgId()const @@ -77,7 +77,7 @@ std::string OnsMessagePushRequest::getMsgId()const void OnsMessagePushRequest::setMsgId(const std::string& msgId) { msgId_ = msgId; - setParameter("MsgId", msgId); + setCoreParameter("MsgId", msgId); } std::string OnsMessagePushRequest::getTopic()const @@ -88,6 +88,6 @@ std::string OnsMessagePushRequest::getTopic()const void OnsMessagePushRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } diff --git a/ons/src/model/OnsMessageSendRequest.cc b/ons/src/model/OnsMessageSendRequest.cc index 4eb007c65..5f7a5327d 100644 --- a/ons/src/model/OnsMessageSendRequest.cc +++ b/ons/src/model/OnsMessageSendRequest.cc @@ -33,7 +33,7 @@ long OnsMessageSendRequest::getPreventCache()const void OnsMessageSendRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMessageSendRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMessageSendRequest::getInstanceId()const void OnsMessageSendRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMessageSendRequest::getTopic()const @@ -55,7 +55,7 @@ std::string OnsMessageSendRequest::getTopic()const void OnsMessageSendRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } std::string OnsMessageSendRequest::getTag()const @@ -66,7 +66,7 @@ std::string OnsMessageSendRequest::getTag()const void OnsMessageSendRequest::setTag(const std::string& tag) { tag_ = tag; - setParameter("Tag", tag); + setCoreParameter("Tag", tag); } std::string OnsMessageSendRequest::getMessage()const @@ -77,7 +77,7 @@ std::string OnsMessageSendRequest::getMessage()const void OnsMessageSendRequest::setMessage(const std::string& message) { message_ = message; - setParameter("Message", message); + setCoreParameter("Message", message); } std::string OnsMessageSendRequest::getKey()const @@ -88,6 +88,6 @@ std::string OnsMessageSendRequest::getKey()const void OnsMessageSendRequest::setKey(const std::string& key) { key_ = key; - setParameter("Key", key); + setCoreParameter("Key", key); } diff --git a/ons/src/model/OnsMessageTraceRequest.cc b/ons/src/model/OnsMessageTraceRequest.cc index c58dd13fc..e1b0553af 100644 --- a/ons/src/model/OnsMessageTraceRequest.cc +++ b/ons/src/model/OnsMessageTraceRequest.cc @@ -33,7 +33,7 @@ long OnsMessageTraceRequest::getPreventCache()const void OnsMessageTraceRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMessageTraceRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMessageTraceRequest::getInstanceId()const void OnsMessageTraceRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMessageTraceRequest::getTopic()const @@ -55,7 +55,7 @@ std::string OnsMessageTraceRequest::getTopic()const void OnsMessageTraceRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } std::string OnsMessageTraceRequest::getMsgId()const @@ -66,6 +66,6 @@ std::string OnsMessageTraceRequest::getMsgId()const void OnsMessageTraceRequest::setMsgId(const std::string& msgId) { msgId_ = msgId; - setParameter("MsgId", msgId); + setCoreParameter("MsgId", msgId); } diff --git a/ons/src/model/OnsMqttGroupIdCreateRequest.cc b/ons/src/model/OnsMqttGroupIdCreateRequest.cc index 240b22fe8..0e487242d 100644 --- a/ons/src/model/OnsMqttGroupIdCreateRequest.cc +++ b/ons/src/model/OnsMqttGroupIdCreateRequest.cc @@ -33,7 +33,7 @@ long OnsMqttGroupIdCreateRequest::getPreventCache()const void OnsMqttGroupIdCreateRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMqttGroupIdCreateRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMqttGroupIdCreateRequest::getInstanceId()const void OnsMqttGroupIdCreateRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMqttGroupIdCreateRequest::getRegionId()const @@ -55,7 +55,7 @@ std::string OnsMqttGroupIdCreateRequest::getRegionId()const void OnsMqttGroupIdCreateRequest::setRegionId(const std::string& regionId) { regionId_ = regionId; - setParameter("RegionId", regionId); + setCoreParameter("RegionId", regionId); } std::string OnsMqttGroupIdCreateRequest::getGroupId()const @@ -66,7 +66,7 @@ std::string OnsMqttGroupIdCreateRequest::getGroupId()const void OnsMqttGroupIdCreateRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsMqttGroupIdCreateRequest::getTopic()const @@ -77,6 +77,6 @@ std::string OnsMqttGroupIdCreateRequest::getTopic()const void OnsMqttGroupIdCreateRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } diff --git a/ons/src/model/OnsMqttGroupIdDeleteRequest.cc b/ons/src/model/OnsMqttGroupIdDeleteRequest.cc index 32e8089b0..2fe2f6896 100644 --- a/ons/src/model/OnsMqttGroupIdDeleteRequest.cc +++ b/ons/src/model/OnsMqttGroupIdDeleteRequest.cc @@ -33,7 +33,7 @@ long OnsMqttGroupIdDeleteRequest::getPreventCache()const void OnsMqttGroupIdDeleteRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMqttGroupIdDeleteRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMqttGroupIdDeleteRequest::getInstanceId()const void OnsMqttGroupIdDeleteRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMqttGroupIdDeleteRequest::getRegionId()const @@ -55,7 +55,7 @@ std::string OnsMqttGroupIdDeleteRequest::getRegionId()const void OnsMqttGroupIdDeleteRequest::setRegionId(const std::string& regionId) { regionId_ = regionId; - setParameter("RegionId", regionId); + setCoreParameter("RegionId", regionId); } std::string OnsMqttGroupIdDeleteRequest::getGroupId()const @@ -66,6 +66,6 @@ std::string OnsMqttGroupIdDeleteRequest::getGroupId()const void OnsMqttGroupIdDeleteRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } diff --git a/ons/src/model/OnsMqttGroupIdListRequest.cc b/ons/src/model/OnsMqttGroupIdListRequest.cc index 1df242d21..1d7bba057 100644 --- a/ons/src/model/OnsMqttGroupIdListRequest.cc +++ b/ons/src/model/OnsMqttGroupIdListRequest.cc @@ -33,7 +33,7 @@ long OnsMqttGroupIdListRequest::getPreventCache()const void OnsMqttGroupIdListRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMqttGroupIdListRequest::getInstanceId()const @@ -44,6 +44,6 @@ std::string OnsMqttGroupIdListRequest::getInstanceId()const void OnsMqttGroupIdListRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } diff --git a/ons/src/model/OnsMqttQueryClientByClientIdRequest.cc b/ons/src/model/OnsMqttQueryClientByClientIdRequest.cc index 5d82f6dca..4d628af00 100644 --- a/ons/src/model/OnsMqttQueryClientByClientIdRequest.cc +++ b/ons/src/model/OnsMqttQueryClientByClientIdRequest.cc @@ -33,7 +33,7 @@ long OnsMqttQueryClientByClientIdRequest::getPreventCache()const void OnsMqttQueryClientByClientIdRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMqttQueryClientByClientIdRequest::getClientId()const @@ -44,7 +44,7 @@ std::string OnsMqttQueryClientByClientIdRequest::getClientId()const void OnsMqttQueryClientByClientIdRequest::setClientId(const std::string& clientId) { clientId_ = clientId; - setParameter("ClientId", clientId); + setCoreParameter("ClientId", clientId); } std::string OnsMqttQueryClientByClientIdRequest::getInstanceId()const @@ -55,6 +55,6 @@ std::string OnsMqttQueryClientByClientIdRequest::getInstanceId()const void OnsMqttQueryClientByClientIdRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } diff --git a/ons/src/model/OnsMqttQueryClientByGroupIdRequest.cc b/ons/src/model/OnsMqttQueryClientByGroupIdRequest.cc index 40772707e..5c6426b58 100644 --- a/ons/src/model/OnsMqttQueryClientByGroupIdRequest.cc +++ b/ons/src/model/OnsMqttQueryClientByGroupIdRequest.cc @@ -33,7 +33,7 @@ long OnsMqttQueryClientByGroupIdRequest::getPreventCache()const void OnsMqttQueryClientByGroupIdRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMqttQueryClientByGroupIdRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMqttQueryClientByGroupIdRequest::getInstanceId()const void OnsMqttQueryClientByGroupIdRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMqttQueryClientByGroupIdRequest::getGroupId()const @@ -55,6 +55,6 @@ std::string OnsMqttQueryClientByGroupIdRequest::getGroupId()const void OnsMqttQueryClientByGroupIdRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } diff --git a/ons/src/model/OnsMqttQueryClientByTopicRequest.cc b/ons/src/model/OnsMqttQueryClientByTopicRequest.cc index 6b79c0935..5b7c6411d 100644 --- a/ons/src/model/OnsMqttQueryClientByTopicRequest.cc +++ b/ons/src/model/OnsMqttQueryClientByTopicRequest.cc @@ -33,7 +33,7 @@ long OnsMqttQueryClientByTopicRequest::getPreventCache()const void OnsMqttQueryClientByTopicRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMqttQueryClientByTopicRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMqttQueryClientByTopicRequest::getInstanceId()const void OnsMqttQueryClientByTopicRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMqttQueryClientByTopicRequest::getParentTopic()const @@ -55,7 +55,7 @@ std::string OnsMqttQueryClientByTopicRequest::getParentTopic()const void OnsMqttQueryClientByTopicRequest::setParentTopic(const std::string& parentTopic) { parentTopic_ = parentTopic; - setParameter("ParentTopic", parentTopic); + setCoreParameter("ParentTopic", parentTopic); } std::string OnsMqttQueryClientByTopicRequest::getSubTopic()const @@ -66,6 +66,6 @@ std::string OnsMqttQueryClientByTopicRequest::getSubTopic()const void OnsMqttQueryClientByTopicRequest::setSubTopic(const std::string& subTopic) { subTopic_ = subTopic; - setParameter("SubTopic", subTopic); + setCoreParameter("SubTopic", subTopic); } diff --git a/ons/src/model/OnsMqttQueryHistoryOnlineRequest.cc b/ons/src/model/OnsMqttQueryHistoryOnlineRequest.cc index 7f300f08f..7bf1d69b7 100644 --- a/ons/src/model/OnsMqttQueryHistoryOnlineRequest.cc +++ b/ons/src/model/OnsMqttQueryHistoryOnlineRequest.cc @@ -33,7 +33,7 @@ long OnsMqttQueryHistoryOnlineRequest::getPreventCache()const void OnsMqttQueryHistoryOnlineRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMqttQueryHistoryOnlineRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMqttQueryHistoryOnlineRequest::getInstanceId()const void OnsMqttQueryHistoryOnlineRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsMqttQueryHistoryOnlineRequest::getGroupId()const @@ -55,7 +55,7 @@ std::string OnsMqttQueryHistoryOnlineRequest::getGroupId()const void OnsMqttQueryHistoryOnlineRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } long OnsMqttQueryHistoryOnlineRequest::getEndTime()const @@ -66,7 +66,7 @@ long OnsMqttQueryHistoryOnlineRequest::getEndTime()const void OnsMqttQueryHistoryOnlineRequest::setEndTime(long endTime) { endTime_ = endTime; - setParameter("EndTime", std::to_string(endTime)); + setCoreParameter("EndTime", std::to_string(endTime)); } long OnsMqttQueryHistoryOnlineRequest::getBeginTime()const @@ -77,6 +77,6 @@ long OnsMqttQueryHistoryOnlineRequest::getBeginTime()const void OnsMqttQueryHistoryOnlineRequest::setBeginTime(long beginTime) { beginTime_ = beginTime; - setParameter("BeginTime", std::to_string(beginTime)); + setCoreParameter("BeginTime", std::to_string(beginTime)); } diff --git a/ons/src/model/OnsMqttQueryMsgTransTrendRequest.cc b/ons/src/model/OnsMqttQueryMsgTransTrendRequest.cc index 42fa966e3..d16389e0b 100644 --- a/ons/src/model/OnsMqttQueryMsgTransTrendRequest.cc +++ b/ons/src/model/OnsMqttQueryMsgTransTrendRequest.cc @@ -33,7 +33,7 @@ long OnsMqttQueryMsgTransTrendRequest::getPreventCache()const void OnsMqttQueryMsgTransTrendRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsMqttQueryMsgTransTrendRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getInstanceId()const void OnsMqttQueryMsgTransTrendRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } int OnsMqttQueryMsgTransTrendRequest::getQos()const @@ -55,7 +55,7 @@ int OnsMqttQueryMsgTransTrendRequest::getQos()const void OnsMqttQueryMsgTransTrendRequest::setQos(int qos) { qos_ = qos; - setParameter("Qos", std::to_string(qos)); + setCoreParameter("Qos", std::to_string(qos)); } std::string OnsMqttQueryMsgTransTrendRequest::getTransType()const @@ -66,7 +66,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getTransType()const void OnsMqttQueryMsgTransTrendRequest::setTransType(const std::string& transType) { transType_ = transType; - setParameter("TransType", transType); + setCoreParameter("TransType", transType); } long OnsMqttQueryMsgTransTrendRequest::getEndTime()const @@ -77,7 +77,7 @@ long OnsMqttQueryMsgTransTrendRequest::getEndTime()const void OnsMqttQueryMsgTransTrendRequest::setEndTime(long endTime) { endTime_ = endTime; - setParameter("EndTime", std::to_string(endTime)); + setCoreParameter("EndTime", std::to_string(endTime)); } long OnsMqttQueryMsgTransTrendRequest::getBeginTime()const @@ -88,7 +88,7 @@ long OnsMqttQueryMsgTransTrendRequest::getBeginTime()const void OnsMqttQueryMsgTransTrendRequest::setBeginTime(long beginTime) { beginTime_ = beginTime; - setParameter("BeginTime", std::to_string(beginTime)); + setCoreParameter("BeginTime", std::to_string(beginTime)); } std::string OnsMqttQueryMsgTransTrendRequest::getTpsType()const @@ -99,7 +99,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getTpsType()const void OnsMqttQueryMsgTransTrendRequest::setTpsType(const std::string& tpsType) { tpsType_ = tpsType; - setParameter("TpsType", tpsType); + setCoreParameter("TpsType", tpsType); } std::string OnsMqttQueryMsgTransTrendRequest::getParentTopic()const @@ -110,7 +110,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getParentTopic()const void OnsMqttQueryMsgTransTrendRequest::setParentTopic(const std::string& parentTopic) { parentTopic_ = parentTopic; - setParameter("ParentTopic", parentTopic); + setCoreParameter("ParentTopic", parentTopic); } std::string OnsMqttQueryMsgTransTrendRequest::getMsgType()const @@ -121,7 +121,7 @@ std::string OnsMqttQueryMsgTransTrendRequest::getMsgType()const void OnsMqttQueryMsgTransTrendRequest::setMsgType(const std::string& msgType) { msgType_ = msgType; - setParameter("MsgType", msgType); + setCoreParameter("MsgType", msgType); } std::string OnsMqttQueryMsgTransTrendRequest::getSubTopic()const @@ -132,6 +132,6 @@ std::string OnsMqttQueryMsgTransTrendRequest::getSubTopic()const void OnsMqttQueryMsgTransTrendRequest::setSubTopic(const std::string& subTopic) { subTopic_ = subTopic; - setParameter("SubTopic", subTopic); + setCoreParameter("SubTopic", subTopic); } diff --git a/ons/src/model/OnsRegionListRequest.cc b/ons/src/model/OnsRegionListRequest.cc index 969e5afa9..2d32d5d6f 100644 --- a/ons/src/model/OnsRegionListRequest.cc +++ b/ons/src/model/OnsRegionListRequest.cc @@ -33,6 +33,6 @@ long OnsRegionListRequest::getPreventCache()const void OnsRegionListRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } diff --git a/ons/src/model/OnsTopicCreateRequest.cc b/ons/src/model/OnsTopicCreateRequest.cc index ae875ee12..c8915a461 100644 --- a/ons/src/model/OnsTopicCreateRequest.cc +++ b/ons/src/model/OnsTopicCreateRequest.cc @@ -33,7 +33,7 @@ long OnsTopicCreateRequest::getPreventCache()const void OnsTopicCreateRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsTopicCreateRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsTopicCreateRequest::getInstanceId()const void OnsTopicCreateRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } int OnsTopicCreateRequest::getMessageType()const @@ -55,7 +55,7 @@ int OnsTopicCreateRequest::getMessageType()const void OnsTopicCreateRequest::setMessageType(int messageType) { messageType_ = messageType; - setParameter("MessageType", std::to_string(messageType)); + setCoreParameter("MessageType", std::to_string(messageType)); } std::string OnsTopicCreateRequest::getTopic()const @@ -66,7 +66,7 @@ std::string OnsTopicCreateRequest::getTopic()const void OnsTopicCreateRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } std::string OnsTopicCreateRequest::getRemark()const @@ -77,6 +77,6 @@ std::string OnsTopicCreateRequest::getRemark()const void OnsTopicCreateRequest::setRemark(const std::string& remark) { remark_ = remark; - setParameter("Remark", remark); + setCoreParameter("Remark", remark); } diff --git a/ons/src/model/OnsTopicDeleteRequest.cc b/ons/src/model/OnsTopicDeleteRequest.cc index 070beaa79..f6fdbfe20 100644 --- a/ons/src/model/OnsTopicDeleteRequest.cc +++ b/ons/src/model/OnsTopicDeleteRequest.cc @@ -33,7 +33,7 @@ long OnsTopicDeleteRequest::getPreventCache()const void OnsTopicDeleteRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsTopicDeleteRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsTopicDeleteRequest::getInstanceId()const void OnsTopicDeleteRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsTopicDeleteRequest::getTopic()const @@ -55,6 +55,6 @@ std::string OnsTopicDeleteRequest::getTopic()const void OnsTopicDeleteRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } diff --git a/ons/src/model/OnsTopicListRequest.cc b/ons/src/model/OnsTopicListRequest.cc index 8b34941ce..1ea6efd4e 100644 --- a/ons/src/model/OnsTopicListRequest.cc +++ b/ons/src/model/OnsTopicListRequest.cc @@ -33,7 +33,7 @@ long OnsTopicListRequest::getPreventCache()const void OnsTopicListRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsTopicListRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsTopicListRequest::getInstanceId()const void OnsTopicListRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsTopicListRequest::getTopic()const @@ -55,6 +55,6 @@ std::string OnsTopicListRequest::getTopic()const void OnsTopicListRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } diff --git a/ons/src/model/OnsTopicStatusRequest.cc b/ons/src/model/OnsTopicStatusRequest.cc index 5a07f5e9d..c10602527 100644 --- a/ons/src/model/OnsTopicStatusRequest.cc +++ b/ons/src/model/OnsTopicStatusRequest.cc @@ -33,7 +33,7 @@ long OnsTopicStatusRequest::getPreventCache()const void OnsTopicStatusRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsTopicStatusRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsTopicStatusRequest::getInstanceId()const void OnsTopicStatusRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsTopicStatusRequest::getTopic()const @@ -55,6 +55,6 @@ std::string OnsTopicStatusRequest::getTopic()const void OnsTopicStatusRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } diff --git a/ons/src/model/OnsTopicSubDetailRequest.cc b/ons/src/model/OnsTopicSubDetailRequest.cc index 683bac697..969fa7dcf 100644 --- a/ons/src/model/OnsTopicSubDetailRequest.cc +++ b/ons/src/model/OnsTopicSubDetailRequest.cc @@ -33,7 +33,7 @@ long OnsTopicSubDetailRequest::getPreventCache()const void OnsTopicSubDetailRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsTopicSubDetailRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsTopicSubDetailRequest::getInstanceId()const void OnsTopicSubDetailRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsTopicSubDetailRequest::getTopic()const @@ -55,6 +55,6 @@ std::string OnsTopicSubDetailRequest::getTopic()const void OnsTopicSubDetailRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } diff --git a/ons/src/model/OnsTopicUpdateRequest.cc b/ons/src/model/OnsTopicUpdateRequest.cc index cfcc9bd68..8498976fb 100644 --- a/ons/src/model/OnsTopicUpdateRequest.cc +++ b/ons/src/model/OnsTopicUpdateRequest.cc @@ -33,7 +33,7 @@ long OnsTopicUpdateRequest::getPreventCache()const void OnsTopicUpdateRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsTopicUpdateRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsTopicUpdateRequest::getInstanceId()const void OnsTopicUpdateRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } int OnsTopicUpdateRequest::getPerm()const @@ -55,7 +55,7 @@ int OnsTopicUpdateRequest::getPerm()const void OnsTopicUpdateRequest::setPerm(int perm) { perm_ = perm; - setParameter("Perm", std::to_string(perm)); + setCoreParameter("Perm", std::to_string(perm)); } std::string OnsTopicUpdateRequest::getTopic()const @@ -66,6 +66,6 @@ std::string OnsTopicUpdateRequest::getTopic()const void OnsTopicUpdateRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } diff --git a/ons/src/model/OnsTraceGetResultRequest.cc b/ons/src/model/OnsTraceGetResultRequest.cc index 5b62904f2..47612b5ad 100644 --- a/ons/src/model/OnsTraceGetResultRequest.cc +++ b/ons/src/model/OnsTraceGetResultRequest.cc @@ -33,7 +33,7 @@ long OnsTraceGetResultRequest::getPreventCache()const void OnsTraceGetResultRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsTraceGetResultRequest::getQueryId()const @@ -44,6 +44,6 @@ std::string OnsTraceGetResultRequest::getQueryId()const void OnsTraceGetResultRequest::setQueryId(const std::string& queryId) { queryId_ = queryId; - setParameter("QueryId", queryId); + setCoreParameter("QueryId", queryId); } diff --git a/ons/src/model/OnsTraceQueryByMsgIdRequest.cc b/ons/src/model/OnsTraceQueryByMsgIdRequest.cc index f4908baca..454adc819 100644 --- a/ons/src/model/OnsTraceQueryByMsgIdRequest.cc +++ b/ons/src/model/OnsTraceQueryByMsgIdRequest.cc @@ -33,7 +33,7 @@ long OnsTraceQueryByMsgIdRequest::getPreventCache()const void OnsTraceQueryByMsgIdRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsTraceQueryByMsgIdRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsTraceQueryByMsgIdRequest::getInstanceId()const void OnsTraceQueryByMsgIdRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsTraceQueryByMsgIdRequest::getTopic()const @@ -55,7 +55,7 @@ std::string OnsTraceQueryByMsgIdRequest::getTopic()const void OnsTraceQueryByMsgIdRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } std::string OnsTraceQueryByMsgIdRequest::getMsgId()const @@ -66,7 +66,7 @@ std::string OnsTraceQueryByMsgIdRequest::getMsgId()const void OnsTraceQueryByMsgIdRequest::setMsgId(const std::string& msgId) { msgId_ = msgId; - setParameter("MsgId", msgId); + setCoreParameter("MsgId", msgId); } long OnsTraceQueryByMsgIdRequest::getEndTime()const @@ -77,7 +77,7 @@ long OnsTraceQueryByMsgIdRequest::getEndTime()const void OnsTraceQueryByMsgIdRequest::setEndTime(long endTime) { endTime_ = endTime; - setParameter("EndTime", std::to_string(endTime)); + setCoreParameter("EndTime", std::to_string(endTime)); } long OnsTraceQueryByMsgIdRequest::getBeginTime()const @@ -88,6 +88,6 @@ long OnsTraceQueryByMsgIdRequest::getBeginTime()const void OnsTraceQueryByMsgIdRequest::setBeginTime(long beginTime) { beginTime_ = beginTime; - setParameter("BeginTime", std::to_string(beginTime)); + setCoreParameter("BeginTime", std::to_string(beginTime)); } diff --git a/ons/src/model/OnsTraceQueryByMsgKeyRequest.cc b/ons/src/model/OnsTraceQueryByMsgKeyRequest.cc index e67b7e4e8..8de8cd542 100644 --- a/ons/src/model/OnsTraceQueryByMsgKeyRequest.cc +++ b/ons/src/model/OnsTraceQueryByMsgKeyRequest.cc @@ -33,7 +33,7 @@ long OnsTraceQueryByMsgKeyRequest::getPreventCache()const void OnsTraceQueryByMsgKeyRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsTraceQueryByMsgKeyRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsTraceQueryByMsgKeyRequest::getInstanceId()const void OnsTraceQueryByMsgKeyRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsTraceQueryByMsgKeyRequest::getTopic()const @@ -55,7 +55,7 @@ std::string OnsTraceQueryByMsgKeyRequest::getTopic()const void OnsTraceQueryByMsgKeyRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } long OnsTraceQueryByMsgKeyRequest::getEndTime()const @@ -66,7 +66,7 @@ long OnsTraceQueryByMsgKeyRequest::getEndTime()const void OnsTraceQueryByMsgKeyRequest::setEndTime(long endTime) { endTime_ = endTime; - setParameter("EndTime", std::to_string(endTime)); + setCoreParameter("EndTime", std::to_string(endTime)); } long OnsTraceQueryByMsgKeyRequest::getBeginTime()const @@ -77,7 +77,7 @@ long OnsTraceQueryByMsgKeyRequest::getBeginTime()const void OnsTraceQueryByMsgKeyRequest::setBeginTime(long beginTime) { beginTime_ = beginTime; - setParameter("BeginTime", std::to_string(beginTime)); + setCoreParameter("BeginTime", std::to_string(beginTime)); } std::string OnsTraceQueryByMsgKeyRequest::getMsgKey()const @@ -88,6 +88,6 @@ std::string OnsTraceQueryByMsgKeyRequest::getMsgKey()const void OnsTraceQueryByMsgKeyRequest::setMsgKey(const std::string& msgKey) { msgKey_ = msgKey; - setParameter("MsgKey", msgKey); + setCoreParameter("MsgKey", msgKey); } diff --git a/ons/src/model/OnsTrendGroupOutputTpsRequest.cc b/ons/src/model/OnsTrendGroupOutputTpsRequest.cc index ddc98693d..6ad47eca5 100644 --- a/ons/src/model/OnsTrendGroupOutputTpsRequest.cc +++ b/ons/src/model/OnsTrendGroupOutputTpsRequest.cc @@ -33,7 +33,7 @@ long OnsTrendGroupOutputTpsRequest::getPreventCache()const void OnsTrendGroupOutputTpsRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } long OnsTrendGroupOutputTpsRequest::getPeriod()const @@ -44,7 +44,7 @@ long OnsTrendGroupOutputTpsRequest::getPeriod()const void OnsTrendGroupOutputTpsRequest::setPeriod(long period) { period_ = period; - setParameter("Period", std::to_string(period)); + setCoreParameter("Period", std::to_string(period)); } std::string OnsTrendGroupOutputTpsRequest::getInstanceId()const @@ -55,7 +55,7 @@ std::string OnsTrendGroupOutputTpsRequest::getInstanceId()const void OnsTrendGroupOutputTpsRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsTrendGroupOutputTpsRequest::getGroupId()const @@ -66,7 +66,7 @@ std::string OnsTrendGroupOutputTpsRequest::getGroupId()const void OnsTrendGroupOutputTpsRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsTrendGroupOutputTpsRequest::getTopic()const @@ -77,7 +77,7 @@ std::string OnsTrendGroupOutputTpsRequest::getTopic()const void OnsTrendGroupOutputTpsRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } long OnsTrendGroupOutputTpsRequest::getEndTime()const @@ -88,7 +88,7 @@ long OnsTrendGroupOutputTpsRequest::getEndTime()const void OnsTrendGroupOutputTpsRequest::setEndTime(long endTime) { endTime_ = endTime; - setParameter("EndTime", std::to_string(endTime)); + setCoreParameter("EndTime", std::to_string(endTime)); } long OnsTrendGroupOutputTpsRequest::getBeginTime()const @@ -99,7 +99,7 @@ long OnsTrendGroupOutputTpsRequest::getBeginTime()const void OnsTrendGroupOutputTpsRequest::setBeginTime(long beginTime) { beginTime_ = beginTime; - setParameter("BeginTime", std::to_string(beginTime)); + setCoreParameter("BeginTime", std::to_string(beginTime)); } int OnsTrendGroupOutputTpsRequest::getType()const @@ -110,6 +110,6 @@ int OnsTrendGroupOutputTpsRequest::getType()const void OnsTrendGroupOutputTpsRequest::setType(int type) { type_ = type; - setParameter("Type", std::to_string(type)); + setCoreParameter("Type", std::to_string(type)); } diff --git a/ons/src/model/OnsTrendTopicInputTpsRequest.cc b/ons/src/model/OnsTrendTopicInputTpsRequest.cc index 84cf71bfb..a133b5f3e 100644 --- a/ons/src/model/OnsTrendTopicInputTpsRequest.cc +++ b/ons/src/model/OnsTrendTopicInputTpsRequest.cc @@ -33,7 +33,7 @@ long OnsTrendTopicInputTpsRequest::getPreventCache()const void OnsTrendTopicInputTpsRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } long OnsTrendTopicInputTpsRequest::getPeriod()const @@ -44,7 +44,7 @@ long OnsTrendTopicInputTpsRequest::getPeriod()const void OnsTrendTopicInputTpsRequest::setPeriod(long period) { period_ = period; - setParameter("Period", std::to_string(period)); + setCoreParameter("Period", std::to_string(period)); } std::string OnsTrendTopicInputTpsRequest::getInstanceId()const @@ -55,7 +55,7 @@ std::string OnsTrendTopicInputTpsRequest::getInstanceId()const void OnsTrendTopicInputTpsRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsTrendTopicInputTpsRequest::getTopic()const @@ -66,7 +66,7 @@ std::string OnsTrendTopicInputTpsRequest::getTopic()const void OnsTrendTopicInputTpsRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } long OnsTrendTopicInputTpsRequest::getEndTime()const @@ -77,7 +77,7 @@ long OnsTrendTopicInputTpsRequest::getEndTime()const void OnsTrendTopicInputTpsRequest::setEndTime(long endTime) { endTime_ = endTime; - setParameter("EndTime", std::to_string(endTime)); + setCoreParameter("EndTime", std::to_string(endTime)); } long OnsTrendTopicInputTpsRequest::getBeginTime()const @@ -88,7 +88,7 @@ long OnsTrendTopicInputTpsRequest::getBeginTime()const void OnsTrendTopicInputTpsRequest::setBeginTime(long beginTime) { beginTime_ = beginTime; - setParameter("BeginTime", std::to_string(beginTime)); + setCoreParameter("BeginTime", std::to_string(beginTime)); } int OnsTrendTopicInputTpsRequest::getType()const @@ -99,6 +99,6 @@ int OnsTrendTopicInputTpsRequest::getType()const void OnsTrendTopicInputTpsRequest::setType(int type) { type_ = type; - setParameter("Type", std::to_string(type)); + setCoreParameter("Type", std::to_string(type)); } diff --git a/ons/src/model/OnsWarnCreateRequest.cc b/ons/src/model/OnsWarnCreateRequest.cc index 46fb941c6..f8d066898 100644 --- a/ons/src/model/OnsWarnCreateRequest.cc +++ b/ons/src/model/OnsWarnCreateRequest.cc @@ -33,7 +33,7 @@ long OnsWarnCreateRequest::getPreventCache()const void OnsWarnCreateRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsWarnCreateRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsWarnCreateRequest::getInstanceId()const void OnsWarnCreateRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsWarnCreateRequest::getBlockTime()const @@ -55,7 +55,7 @@ std::string OnsWarnCreateRequest::getBlockTime()const void OnsWarnCreateRequest::setBlockTime(const std::string& blockTime) { blockTime_ = blockTime; - setParameter("BlockTime", blockTime); + setCoreParameter("BlockTime", blockTime); } std::string OnsWarnCreateRequest::getLevel()const @@ -66,7 +66,7 @@ std::string OnsWarnCreateRequest::getLevel()const void OnsWarnCreateRequest::setLevel(const std::string& level) { level_ = level; - setParameter("Level", level); + setCoreParameter("Level", level); } std::string OnsWarnCreateRequest::getGroupId()const @@ -77,7 +77,7 @@ std::string OnsWarnCreateRequest::getGroupId()const void OnsWarnCreateRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsWarnCreateRequest::getDelayTime()const @@ -88,7 +88,7 @@ std::string OnsWarnCreateRequest::getDelayTime()const void OnsWarnCreateRequest::setDelayTime(const std::string& delayTime) { delayTime_ = delayTime; - setParameter("DelayTime", delayTime); + setCoreParameter("DelayTime", delayTime); } std::string OnsWarnCreateRequest::getTopic()const @@ -99,7 +99,7 @@ std::string OnsWarnCreateRequest::getTopic()const void OnsWarnCreateRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); } std::string OnsWarnCreateRequest::getThreshold()const @@ -110,7 +110,7 @@ std::string OnsWarnCreateRequest::getThreshold()const void OnsWarnCreateRequest::setThreshold(const std::string& threshold) { threshold_ = threshold; - setParameter("Threshold", threshold); + setCoreParameter("Threshold", threshold); } std::string OnsWarnCreateRequest::getAlertTime()const @@ -121,7 +121,7 @@ std::string OnsWarnCreateRequest::getAlertTime()const void OnsWarnCreateRequest::setAlertTime(const std::string& alertTime) { alertTime_ = alertTime; - setParameter("AlertTime", alertTime); + setCoreParameter("AlertTime", alertTime); } std::string OnsWarnCreateRequest::getContacts()const @@ -132,6 +132,6 @@ std::string OnsWarnCreateRequest::getContacts()const void OnsWarnCreateRequest::setContacts(const std::string& contacts) { contacts_ = contacts; - setParameter("Contacts", contacts); + setCoreParameter("Contacts", contacts); } diff --git a/ons/src/model/OnsWarnDeleteRequest.cc b/ons/src/model/OnsWarnDeleteRequest.cc index 0d3a04441..eb021c98d 100644 --- a/ons/src/model/OnsWarnDeleteRequest.cc +++ b/ons/src/model/OnsWarnDeleteRequest.cc @@ -33,7 +33,7 @@ long OnsWarnDeleteRequest::getPreventCache()const void OnsWarnDeleteRequest::setPreventCache(long preventCache) { preventCache_ = preventCache; - setParameter("PreventCache", std::to_string(preventCache)); + setCoreParameter("PreventCache", std::to_string(preventCache)); } std::string OnsWarnDeleteRequest::getInstanceId()const @@ -44,7 +44,7 @@ std::string OnsWarnDeleteRequest::getInstanceId()const void OnsWarnDeleteRequest::setInstanceId(const std::string& instanceId) { instanceId_ = instanceId; - setParameter("InstanceId", instanceId); + setCoreParameter("InstanceId", instanceId); } std::string OnsWarnDeleteRequest::getGroupId()const @@ -55,7 +55,7 @@ std::string OnsWarnDeleteRequest::getGroupId()const void OnsWarnDeleteRequest::setGroupId(const std::string& groupId) { groupId_ = groupId; - setParameter("GroupId", groupId); + setCoreParameter("GroupId", groupId); } std::string OnsWarnDeleteRequest::getTopic()const @@ -66,6 +66,6 @@ std::string OnsWarnDeleteRequest::getTopic()const void OnsWarnDeleteRequest::setTopic(const std::string& topic) { topic_ = topic; - setParameter("Topic", topic); + setCoreParameter("Topic", topic); }