]> git.argeo.org Git - lgpl/argeo-commons.git/blob - NodeInstance.java
aa1b5cee3872f44f1c228287ed537b458209e460
[lgpl/argeo-commons.git] / NodeInstance.java
1 package org.argeo.node;
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 }