com.github.trevershick.test.ldap.annotations.LdapEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ldap-test-utils Show documentation
Show all versions of ldap-test-utils Show documentation
Client library that makes it easy to test with an embedded LDAP server (from unboundid).
package com.github.trevershick.test.ldap.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public abstract @interface LdapEntry {
String dn();
String[] objectclass();
LdapAttribute[] attributes() default {};
}