|
|
|
|
@ -18,6 +18,8 @@ package org.springframework.boot.data.ldap.test.autoconfigure;
@@ -18,6 +18,8 @@ package org.springframework.boot.data.ldap.test.autoconfigure;
|
|
|
|
|
|
|
|
|
|
import javax.naming.Name; |
|
|
|
|
|
|
|
|
|
import org.jspecify.annotations.Nullable; |
|
|
|
|
|
|
|
|
|
import org.springframework.ldap.odm.annotations.Entry; |
|
|
|
|
import org.springframework.ldap.odm.annotations.Id; |
|
|
|
|
|
|
|
|
|
@ -30,13 +32,13 @@ import org.springframework.ldap.odm.annotations.Id;
@@ -30,13 +32,13 @@ import org.springframework.ldap.odm.annotations.Id;
|
|
|
|
|
public class ExampleEntry { |
|
|
|
|
|
|
|
|
|
@Id |
|
|
|
|
private Name dn; |
|
|
|
|
private @Nullable Name dn; |
|
|
|
|
|
|
|
|
|
public Name getDn() { |
|
|
|
|
public @Nullable Name getDn() { |
|
|
|
|
return this.dn; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void setDn(Name dn) { |
|
|
|
|
public void setDn(@Nullable Name dn) { |
|
|
|
|
this.dn = dn; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|