Razor88
Razor88

Reputation: 221

Spring LDAP reference: No PersonRepo interface

This might be a really dumb question, but I'm trying to follow the Spring LDAP guide: http://docs.spring.io/spring-ldap/docs/current/reference/

However, most of the classes they define implement an interface named "PersonRepo". However, this interface doesn't seem to be defined anywhere. Am I missing something obvious?

Upvotes: 1

Views: 365

Answers (1)

abaghel
abaghel

Reputation: 15297

You can refer PersonDao and PersonDaoImpl at spring-ldap samples. Code for PersonRepo is not there in guide but it is same as PersonDao interface.

Upvotes: 2

Related Questions