01: /**
02: * LibreSource Community
03: * Copyright (C) 2004-2007 Artenum SARL / INRIA
04: * http://www.libresource.org - contact@artenum.com
05: *
06: * This software is not a free software; you can modify it under the
07: * LibreSource Enterprise user license but you can't redistribute it.
08: * See licenses details in LSE-user-license.txt
09: *
10: * Initial authors :
11: *
12: * Guillaume Bort / INRIA
13: * Francois Charoy / Universite Nancy 2
14: * Julien Forest / Artenum
15: * Claude Godart / Universite Henry Poincare
16: * Florent Jouille / INRIA
17: * Sebastien Jourdain / INRIA / Artenum
18: * Yves Lerumeur / Artenum
19: * Pascal Molli / Universite Henry Poincare
20: * Gerald Oster / INRIA
21: * Mariarosa Penzi / Artenum
22: * Gerard Sookahet / Artenum
23: * Raphael Tani / INRIA
24: *
25: * Contributors :
26: *
27: * Stephane Bagnier / Artenum
28: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29: */package org.libresource.form;
30:
31: /**
32: * Artenum Contribution
33: * @author <a href="mailto:jourdain@artenum.com">Sebastien Jourdain</a> - <a href="http://www.artenum.com">Artenum</a>
34: */
35: public interface FormConstants {
36: // Service/Resource type
37: public final static String SERVICE = "LibresourceForm";
38: public final static String RESOURCE_FORM = "Form";
39:
40: // Security rights
41: public final static String SECURITY_FORM_SUBMIT = "Form:SUBMIT";
42:
43: // Event types
44: public final static String EVENT_FORM_CREATE = "libresourceForm.form.create";
45: public final static String EVENT_FORM_EDIT = "libresourceForm.form.edit";
46: public final static String EVENT_FORM_DELETE = "libresourceForm.form.delete";
47: public final static String EVENT_FORM_SUBMIT = "libresourceForm.form.submit";
48:
49: // Node property form keys
50: public final static String NODE_PROPERTY_FORM = "kernel.node.form";
51: }
|