#251 - Polishing.

Fixed package structure in sources (nested folders instead of dot-separated ones). Removed obsolete dependency in POM and point to relative POMs.
This commit is contained in:
Oliver Gierke
2017-01-28 09:27:42 +01:00
parent 37d5fadf4d
commit 5a450afa09
5 changed files with 7 additions and 15 deletions

View File

@@ -33,13 +33,9 @@ import org.springframework.ldap.odm.annotations.Id;
@Data
public class Person {
@Id private Name id;
@DnAttribute(value = "uid", index = 3) private String uid;
@Attribute(name = "cn") private String fullName;
@Attribute(name = "sn") private String lastname;
private @Id Name id;
private @DnAttribute(value = "uid", index = 3) String uid;
private @Attribute(name = "cn") String fullName;
private @Attribute(name = "sn") String lastname;
private String userPassword;
}