LDAP Synchronisation Module

5
I get this error when i try and deploy my project with the lDAP module added. I guess it is some error in trying to import the package in the java. Any help will be good! C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ImportLdapGroups.java:13: package com.mendix.ldap does not exist import com.mendix.ldap.LdapException; ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ImportLdapUsers.java:13: package com.mendix.ldap does not exist import com.mendix.ldap.LdapException; ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ReadLdap.java:13: package com.mendix.ldap does not exist import com.mendix.ldap.LdapException; ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ReadLdapDirectoryAttributes.java:16: package com.mendix.ldap does not exist import com.mendix.ldap.LdapModule; ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\SelectLdapDirectory.java:14: package com.mendix.ldap does not exist import com.mendix.ldap.LdapModule; ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\StartLdapJava.java:13: package com.mendix.ldap does not exist import com.mendix.ldap.LdapModule; ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ImportLdapGroups.java:36: package com.mendix.ldap does not exist this.addTextMessageFeedback(MessageType.INFO, com.mendix.ldap.LdapModule.getInstance().importGroups(getContext(), ldapServer), true); ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ImportLdapGroups.java:40: cannot find symbol symbol : class LdapException location: class ldap.actions.ImportLdapGroups this.addTextMessageFeedback((e instanceof LdapException)?MessageType.WARNING:MessageType.ERROR, e.getMessage(), true); ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ImportLdapUsers.java:35: package com.mendix.ldap does not exist this.addTextMessageFeedback(MessageType.INFO, com.mendix.ldap.LdapModule.getInstance().importUsers(getContext(), ldapServer), true); ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ImportLdapUsers.java:38: cannot find symbol symbol : class LdapException location: class ldap.actions.ImportLdapUsers this.addTextMessageFeedback((le instanceof LdapException)?MessageType.WARNING:MessageType.ERROR, le.getMessage(), true); ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ReadLdap.java:35: package com.mendix.ldap does not exist this.addTextMessageFeedback(MessageType.INFO, com.mendix.ldap.LdapModule.getInstance().readLDAP(getContext(), ldapServer), true); ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ReadLdap.java:37: cannot find symbol symbol : class LdapException location: class ldap.actions.ReadLdap catch (LdapException le) { ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ReadLdap.java:38: cannot find symbol symbol : class LdapException location: class ldap.actions.ReadLdap this.addTextMessageFeedback((le instanceof LdapException)?MessageType.WARNING:MessageType.ERROR, le.getMessage(), true); ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\ReadLdapDirectoryAttributes.java:45: cannot find symbol symbol : variable LdapModule location: class ldap.actions.ReadLdapDirectoryAttributes for(String attr : LdapModule.getInstance().getLdapUserAttributes(context, ldapServer)) { ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\SelectLdapDirectory.java:35: cannot find symbol symbol : variable LdapModule location: class ldap.actions.SelectLdapDirectory LdapServer server = LdapModule.getInstance().addLdapDirectory(getContext(), ldapDirectory); ^ C:\Documents and Settings\blasi01\My Documents\CMDB 2.5\javasource\ldap\actions\StartLdapJava.java:29: cannot find symbol symbol : variable LdapModule location: class ldap.actions.StartLdapJava LdapModule.getInstance(); //trigger instantiation ^ 16 errors
asked
1 answers
4

my apologies, the userlib in the package was not correct. It should have been fixed by now.

answered