View Javadoc

1   package net.sf.jldapbeans.commons;
2   
3   import java.util.List;
4   
5   import net.sf.jldapbeans.lang.annotation.LdapAttribute;
6   import net.sf.jldapbeans.lang.annotation.*;
7   
8   @LdapBean
9   public interface Organization extends Top {
10  	@LdapAttribute(name = {"o", "organizationName"},
11  			value = LdapModifier.REQUIRED)
12  	public List getOrganizationName();
13  	public void setOrganizationName(List value);
14  }