View Javadoc
1   package org.argeo.api;
2   
3   import javax.naming.ldap.LdapName;
4   
5   /** The structured data */
6   public interface NodeInstance {
7   	/**
8   	 * To be used as an identifier of a workgroup, typically as a value for the
9   	 * 'businessCategory' attribute in LDAP.
10  	 */
11  	public final static String WORKGROUP = "workgroup";
12  
13  	/** Mark this group as a workgroup */
14  	void createWorkgroup(LdapName groupDn);
15  }