KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > datatypes > resources > StateConstants


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10
11 package org.mmbase.datatypes.resources;
12
13
14 /**
15  * @author Michiel Meeuwissen
16  * @version $Id: StateConstants.java,v 1.1 2006/07/03 14:22:42 michiel Exp $
17  * @since MMBase-1.8.1
18  */

19 public interface StateConstants {
20
21     static final int UNKNOWN = -1;
22     static final int ACTIVE = 1;
23     static final int INACTIVE = 2;
24     static final int ERROR = 3;
25     
26 }
27
28
Popular Tags