diff options
| author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2010-07-08 20:29:52 +0000 |
|---|---|---|
| committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2010-07-08 20:29:52 +0000 |
| commit | 459f48df9d6b62a0f72be50c8ce082c1317c736e (patch) | |
| tree | 144cf9f423de1fb798868ed22229ce159738d714 /cpp/include/qpid/agent | |
| parent | df239e9f6987f45162d7ccd6459f1b73a81b39f9 (diff) | |
| download | qpid-python-459f48df9d6b62a0f72be50c8ce082c1317c736e.tar.gz | |
QMF: add api to get agent id, and new object id constructor that uses agent id.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@961919 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include/qpid/agent')
| -rw-r--r-- | cpp/include/qpid/agent/ManagementAgent.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/include/qpid/agent/ManagementAgent.h b/cpp/include/qpid/agent/ManagementAgent.h index aa0a974c35..e2451244c1 100644 --- a/cpp/include/qpid/agent/ManagementAgent.h +++ b/cpp/include/qpid/agent/ManagementAgent.h @@ -75,6 +75,16 @@ class ManagementAgent const std::string& product, const std::string& instance="") = 0; + // Retrieve the name of the agent as assigned by setName() + // + virtual void getName(std::string& vendor, + std::string& product, + std::string& instance) = 0; + + // Obtain the fully qualified name of the agent + // + virtual const std::string& getAddress() = 0; + // Connect to a management broker // // brokerHost - Hostname or IP address (dotted-quad) of broker. |
