import com.github.oxldap.annotations.*;
@Entry(dn = "ou=users,dc=example,dc=com")
public class User {
@Attribute(name = "cn")
private String commonName;
@Attribute(name = "sn")
private String surname;
@Attribute(name = "uid")
private String userId;
}