Source code: com/flexstor/common/constants/EditConstantsI.java
1 /*
2 * EditConstantsI.java
3 *
4 * Copyright $Date: 2003/08/11 02:22:32 $ FLEXSTOR.net Inc.
5 *
6 * This work is licensed for use and distribution under license terms found at
7 * http://www.flexstor.org/license.html
8 *
9 */
10
11 package com.flexstor.common.constants;
12
13 /**
14 * This is the constants file for actions during an edit.
15 *
16 * @author Anurag Mandloi 02\22\2000
17 * @version 1.0
18 * @since FlexDB 3.0
19 */
20
21 public interface EditConstantsI
22 {
23
24 /* MKS Identifier */
25 public final static String IDENTIFIER="$Id: EditConstantsI.java,v 1.2 2003/08/11 02:22:32 aleric Exp $";
26
27 /**
28 * ACTION CONSTANTS FOR EDIT.
29 **/
30 public final static int DELETE = 10;
31
32 public final static int CREATE = 20;
33
34 public final static int MODIFY = 30;
35
36 public final static int DELETE_VERSION = 60;
37 /*
38 * for Assets only
39 */
40 public final static int INSERT_DUPLICATE = 40;
41
42 public final static int CLASSIFY = 50;
43 }