We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08e8ae2 commit 6be3662Copy full SHA for 6be3662
src/docs/asciidoc/index.adoc
@@ -364,7 +364,7 @@ public class PersonRepoImpl implements PersonRepo {
364
public String mapFromAttributes(Attributes attrs)
365
throws NamingException {
366
367
- return attrs.get("cn").get();
+ return (String) attrs.get("cn").get();
368
}
369
});
370
@@ -2674,4 +2674,4 @@ Another way to work against an embedded ldap server is using `org.springframewor
2674
</bean>
2675
----
2676
2677
-Also, `org.springframework.ldap.test.unboundid.LdapTestUtils` provide methods to work with embedded ldap server programmatically.
+Also, `org.springframework.ldap.test.unboundid.LdapTestUtils` provide methods to work with embedded ldap server programmatically.
0 commit comments