Reputation: 221
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
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