All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.trevershick.test.ldap.annotations.LdapEntry Maven / Gradle / Ivy

Go to download

Client library that makes it easy to test with an embedded LDAP server (from unboundid).

There is a newer version: 2.0.1
Show newest version
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 {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy