View Javadoc
1   package org.argeo.connect;
2   
3   /** JCR node types managed by Connect */
4   public interface ConnectTypes {
5   
6   	/* COMMON CONCEPTS */
7   	String CONNECT_BASE = "connect:base";
8   	String CONNECT_ENTITY = "connect:entity";
9   	String CONNECT_EXTERNAL_ID = "connect:externalId";
10  	String CONNECT_TAGGABLE = "connect:taggable";
11  
12  	// Minimal persons and contact model based on standard LDAP properties
13  	String CONNECT_CONTACTABLE = "connect:contactable";
14  	String CONNECT_LDAP_PERSON = "connect:person";
15  	String CONNECT_LDAP_ORG = "connect:org";
16  }