01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.common.entity;
09:
10: //base classes
11: import java.io.PrintStream;
12: import java.io.PrintWriter;
13:
14: //project specific classes
15:
16: //other classes
17:
18: interface SystemEntityCommon {
19:
20: public final static int CREATE_ENTITY = 0;
21: public final static int UPDATE_ENTITY = 1;
22: public final static int DELETE_ENTITY = 2;
23: }
|