ONS SDK Auto Released By wenting.ywt,Version:1.35.3

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
haowei.yao
2019-03-29 10:02:01 +08:00
parent 55ec616f75
commit 96bab78790
48 changed files with 206 additions and 201 deletions

View File

@@ -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);
}