Change backend api.
This commit is contained in:
@@ -36,6 +36,8 @@ public:
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getCertCode() const;
|
||||
void setCertCode(const std::string &certCode);
|
||||
std::string getRouteName() const;
|
||||
void setRouteName(const std::string &routeName);
|
||||
std::string getMask() const;
|
||||
void setMask(const std::string &mask);
|
||||
std::string getResultCount() const;
|
||||
@@ -57,6 +59,7 @@ private:
|
||||
long resourceOwnerId_;
|
||||
std::string accessKeyId_;
|
||||
std::string certCode_;
|
||||
std::string routeName_;
|
||||
std::string mask_;
|
||||
std::string resultCount_;
|
||||
std::string resourceOwnerAccount_;
|
||||
|
||||
@@ -34,6 +34,8 @@ public:
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getAccessKeyId() const;
|
||||
void setAccessKeyId(const std::string &accessKeyId);
|
||||
std::string getRouteName() const;
|
||||
void setRouteName(const std::string &routeName);
|
||||
std::string getMask() const;
|
||||
void setMask(const std::string &mask);
|
||||
std::string getResultCount() const;
|
||||
@@ -56,6 +58,7 @@ public:
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
std::string accessKeyId_;
|
||||
std::string routeName_;
|
||||
std::string mask_;
|
||||
std::string resultCount_;
|
||||
std::string resourceOwnerAccount_;
|
||||
|
||||
@@ -52,6 +52,15 @@ void ThreeElementsVerificationRequest::setCertCode(const std::string &certCode)
|
||||
setParameter(std::string("CertCode"), certCode);
|
||||
}
|
||||
|
||||
std::string ThreeElementsVerificationRequest::getRouteName() const {
|
||||
return routeName_;
|
||||
}
|
||||
|
||||
void ThreeElementsVerificationRequest::setRouteName(const std::string &routeName) {
|
||||
routeName_ = routeName;
|
||||
setParameter(std::string("RouteName"), routeName);
|
||||
}
|
||||
|
||||
std::string ThreeElementsVerificationRequest::getMask() const {
|
||||
return mask_;
|
||||
}
|
||||
|
||||
@@ -43,6 +43,15 @@ void TwoElementsVerificationRequest::setAccessKeyId(const std::string &accessKey
|
||||
setParameter(std::string("AccessKeyId"), accessKeyId);
|
||||
}
|
||||
|
||||
std::string TwoElementsVerificationRequest::getRouteName() const {
|
||||
return routeName_;
|
||||
}
|
||||
|
||||
void TwoElementsVerificationRequest::setRouteName(const std::string &routeName) {
|
||||
routeName_ = routeName;
|
||||
setParameter(std::string("RouteName"), routeName);
|
||||
}
|
||||
|
||||
std::string TwoElementsVerificationRequest::getMask() const {
|
||||
return mask_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user