]> git.argeo.org Git - lgpl/argeo-commons.git/blob - NodeInstance.java
167ba81d5ec090abf8f6319554df1c3d7a7ebd11
[lgpl/argeo-commons.git] / NodeInstance.java
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 }