diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2014-07-24 12:11:29 +0200 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2014-07-24 12:11:29 +0200 |
| commit | 7690395f52e3d0853695cea77f0103fb56c81838 (patch) | |
| tree | c3aabbfca661b5ad4d2dc8ad7912f64d0d8b788f | |
| parent | 93837661a3f34e6b267f053e34dfc47b50199865 (diff) | |
Wrong search was being called by the LDAP chooser - this will be fixed
properly in a bigger kernel update, allowing ItemPaths to contain
properties.
| -rw-r--r-- | src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java b/src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java index d69049b..7245618 100644 --- a/src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java +++ b/src/main/java/com/c2kernel/gui/lifecycle/chooser/LDAPEntryChooser.java @@ -33,7 +33,7 @@ public class LDAPEntryChooser extends JComboBox {
try
{
- Iterator<?> children = Gateway.getLookup().search(mDomainPath);
+ Iterator<?> children = Gateway.getLookup().search(mDomainPath, "*");
while (children.hasNext())
{
DomainPath domPath = (DomainPath)children.next();
|
