diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2007-12-14 20:22:30 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2007-12-14 20:22:30 +0000 |
commit | 4930af608c6763a41eed4985bb5460a7bf8eb6b9 (patch) | |
tree | b62c6e1dde2db62aaf9553ecb79e1a6f5d35dc32 /python/mgmt-cli/main.py | |
parent | 5c65e1c2269ae3257010a7a3cbbc4bb57fff2053 (diff) | |
download | qpid-python-4930af608c6763a41eed4985bb5460a7bf8eb6b9.tar.gz |
patch from tross
QPID-706
Added implementation for the "Call" command to invoke methods on management objects.
Fixed a bug in qpid/management.py caused by replies to methods with no arguments.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@604286 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/mgmt-cli/main.py')
-rwxr-xr-x | python/mgmt-cli/main.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/mgmt-cli/main.py b/python/mgmt-cli/main.py index 2990e25437..4d7c03d1f2 100755 --- a/python/mgmt-cli/main.py +++ b/python/mgmt-cli/main.py @@ -48,11 +48,12 @@ class Mcli (Cmd): print " list - Print summary of existing objects by class" print " list <className> - Print list of objects of the specified class" print " list <className> all - Print contents of all objects of specified class" + print " list <className> active - Print contents of all non-deleted objects of specified class" print " list <className> <list-of-IDs> - Print contents of one or more objects" print " list is space-separated, ranges may be specified (i.e. 1004-1010)" print " call <ID> <methodName> [<args>] - Invoke a method on an object" print " schema - Print summary of object classes seen on the target" - print " schema [className] - Print details of an object class" + print " schema <className> - Print details of an object class" print " set time-format short - Select short timestamp format (default)" print " set time-format long - Select long timestamp format" print " quit or ^D - Exit the program" |