]> git.argeo.org Git - gpl/argeo-suite.git/blob - src/org/argeo/entity/EntityType.java
Prepare next development cycle
[gpl/argeo-suite.git] / src / org / argeo / entity / EntityType.java
1 package org.argeo.entity;
2
3 /** Types related to entities. */
4 public enum EntityType implements JcrName {
5 // entity
6 entity, definition,
7 // typology
8 typologies, terms, term,
9 // form
10 form, formSet, formSubmission,
11 // graphics
12 box,
13 // ldap
14 person, user;
15
16 @Override
17 public String getPrefix() {
18 return prefix();
19 }
20
21 public static String prefix() {
22 return "entity";
23 }
24
25 @Override
26 public String getNamespace() {
27 return namespace();
28 }
29
30 public static String namespace() {
31 return "http://www.argeo.org/ns/entity";
32 }
33
34 }