LDAP-263: Moved LdapEncoder to support package to break package tangle between query, filter and core.

This commit is contained in:
Mattias Hellborg Arthursson
2013-09-23 18:00:37 +02:00
parent b141cfd4cb
commit 7134d21391
7 changed files with 7 additions and 6 deletions

View File

@@ -17,6 +17,7 @@ package org.springframework.ldap.core;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.ldap.support.LdapEncoder;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;

View File

@@ -24,7 +24,7 @@ import org.springframework.ldap.UncategorizedLdapException;
import org.springframework.ldap.core.AuthenticationSource;
import org.springframework.ldap.core.ContextSource;
import org.springframework.ldap.core.DistinguishedName;
import org.springframework.ldap.core.LdapEncoder;
import org.springframework.ldap.support.LdapEncoder;
import org.springframework.ldap.support.LdapUtils;
import org.springframework.util.ObjectUtils;
import org.springframework.util.StringUtils;

View File

@@ -15,7 +15,7 @@
*/
package org.springframework.ldap.filter;
import org.springframework.ldap.core.LdapEncoder;
import org.springframework.ldap.support.LdapEncoder;
/**
* Abstract superclass for filters that compare values.

View File

@@ -16,7 +16,7 @@
package org.springframework.ldap.filter;
import org.springframework.ldap.core.LdapEncoder;
import org.springframework.ldap.support.LdapEncoder;
/**
* This filter allows the user to specify wildcards (*) by not escaping them in

View File

@@ -16,7 +16,7 @@
package org.springframework.ldap.filter;
import org.springframework.util.StringUtils;
import org.springframework.ldap.core.LdapEncoder;
import org.springframework.ldap.support.LdapEncoder;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.ldap.core;
package org.springframework.ldap.support;
import org.springframework.ldap.BadLdapGrammarException;

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.ldap.core;
package org.springframework.ldap.support;
import org.junit.Test;
import org.springframework.ldap.BadLdapGrammarException;