diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-09-26 16:38:18 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-09-26 16:38:18 -0400 |
commit | 8c37266661594245c4bea4c4094c86851bdf5550 (patch) | |
tree | 1871c4c29711c162a296f7994bfd9115a30216ef /py/python/Ice.py | |
parent | Fixed bug 2488 (diff) | |
download | ice-8c37266661594245c4bea4c4094c86851bdf5550.tar.bz2 ice-8c37266661594245c4bea4c4094c86851bdf5550.tar.xz ice-8c37266661594245c4bea4c4094c86851bdf5550.zip |
Squashed commit of the following:
commit 569cd3ce2933b104c980b4bfa8a1d0bc6d3be4c9
Author: Bernard Normier <bernard@zeroc.com>
Date: Wed Sep 26 16:36:46 2007 -0400
Implemented admin facet filtering (Ice.Admin.Facets property) and Properties::getPropertyAsList[WithDefault]
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 3afd16263f8..7f89bfd17a3 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -474,6 +474,12 @@ class PropertiesI(Properties): def getPropertyAsIntWithDefault(self, key, value): return self._impl.getPropertyAsIntWithDefault(key, value) + def getPropertyAsList(self, key): + return self._impl.getPropertyAsList(key) + + def getPropertyAsListWithDefault(self, key, value): + return self._impl.getPropertyAsListWithDefault(key, value) + def getPropertiesForPrefix(self, prefix): return self._impl.getPropertiesForPrefix(prefix) |