KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ivata > groupware > business > library > item > LibraryItemConstants


1 /*
2  * Copyright (c) 2001 - 2005 ivata limited.
3  * All rights reserved.
4  * -----------------------------------------------------------------------------
5  * ivata groupware may be redistributed under the GNU General Public
6  * License as published by the Free Software Foundation;
7  * version 2 of the License.
8  *
9  * These programs are free software; you can redistribute them and/or
10  * modify them under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; version 2 of the License.
12  *
13  * These programs are distributed in the hope that they will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  *
17  * See the GNU General Public License in the file LICENSE.txt for more
18  * details.
19  *
20  * If you would like a copy of the GNU General Public License write to
21  *
22  * Free Software Foundation, Inc.
23  * 59 Temple Place - Suite 330
24  * Boston, MA 02111-1307, USA.
25  *
26  *
27  * To arrange commercial support and licensing, contact ivata at
28  * http://www.ivata.com/contact.jsp
29  * -----------------------------------------------------------------------------
30  * $Log: LibraryItemConstants.java,v $
31  * Revision 1.3 2005/04/10 20:31:59 colinmacleod
32  * Added new themes.
33  * Changed id type to String.
34  * Changed i tag to em and b tag to strong.
35  * Improved PicoContainerFactory with NanoContainer scripts.
36  *
37  * Revision 1.2 2005/04/09 17:19:45 colinmacleod
38  * Changed copyright text to GPL v2 explicitly.
39  *
40  * Revision 1.1.1.1 2005/03/10 17:51:59 colinmacleod
41  * Restructured ivata op around Hibernate/PicoContainer.
42  * Renamed ivata groupware.
43  *
44  * Revision 1.2 2004/03/21 21:16:29 colinmacleod
45  * Shortened name to ivata op.
46  *
47  * Revision 1.1.1.1 2004/01/27 20:58:39 colinmacleod
48  * Moved ivata openportal to SourceForge..
49  *
50  * Revision 1.2 2003/10/15 14:16:53 colin
51  * fixing for XDoclet
52  *
53  * Revision 1.1 2003/02/24 19:09:22 colin
54  * moved to business
55  *
56  * Revision 1.3 2003/02/04 17:43:47 colin
57  * copyright notice
58  *
59  * Revision 1.2 2002/07/01 08:12:09 colin
60  * made constants Integers rather than ints
61  *
62  * Revision 1.1 2002/06/18 11:40:13 colin
63  * first version of library
64  * -----------------------------------------------------------------------------
65  */

66 package com.ivata.groupware.business.library.item;
67
68
69 /**
70  * <p>Stores constant values for the {@link LibraryItemBean library item}.</p>
71  *
72  * @since 2002-06-14
73  * @author Colin MacLeod
74  * <a HREF='mailto:colin.macleod@ivata.com'>colin.macleod@ivata.com</a>
75  * @version $Revision: 1.3 $
76  * @see LibraryItemBean
77  */

78 public class LibraryItemConstants {
79     /**
80  * <p>Represents a general document or report type.</p>
81  */

82     public final static Integer JavaDoc ITEM_DOCUMENT = new Integer JavaDoc(0);
83
84     /**
85  * <p>Represents a memo from one person to a group.</p>
86  */

87     public final static Integer JavaDoc ITEM_MEMO = new Integer JavaDoc(1);
88
89     /**
90  * <p>Represents frequently asked questions.</p>
91  */

92     public final static Integer JavaDoc ITEM_FAQ = new Integer JavaDoc(2);
93
94     /**
95  * <p>Represents minutes/agenda of a meeting.</p>
96  */

97     public final static Integer JavaDoc ITEM_MEETING = new Integer JavaDoc(3);
98
99     /**
100  * <p>Represents a short note, with just a summary.</p>
101  */

102     public final static Integer JavaDoc ITEM_NOTE = new Integer JavaDoc(4);
103
104     /**
105  * <p>Represents a news item, usually linking externally.</p>
106  */

107     public final static Integer JavaDoc ITEM_NEWS = new Integer JavaDoc(5);
108 }
109
Popular Tags