1 /*
2 wsmo4j - a WSMO API and Reference Implementation
3
4 Copyright (c) 2004-2005, OntoText Lab. / SIRMA
5
6 This library is free software; you can redistribute it and/or modify it under
7 the terms of the GNU Lesser General Public License as published by the Free
8 Software Foundation; either version 2.1 of the License, or (at your option)
9 any later version.
10 This library is distributed in the hope that it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13 details.
14 You should have received a copy of the GNU Lesser General Public License along
15 with this library; if not, write to the Free Software Foundation, Inc.,
16 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19 /**
20 * <p>Title: WSMO4J</p>
21 * <p>Description: WSMO API and a Reference Implementation</p>
22 * <p>Copyright: Copyright (c) 2004-2005</p>
23 * <p>Company: OntoText Lab. / SIRMA </p>
24 */
25
26 package org.wsmo.common;
27
28
29 /**
30 * This class is a placeholder for the core Dublin Core non-functional property keys
31 *
32 * @author not attributable
33 * @version $Revision: 1874 $ $Date: 2006-11-16 11:36:28 +0200 (Thu, 16 Nov 2006) $
34 */
35
36 public final class NFP {
37
38 public static final String DC_BASE = "http://purl.org/dc/elements/1.1#";
39
40 public static final String WSML_BASE = WSML.WSML_NAMESPACE;
41
42 public static final String DC_TITLE = DC_BASE + "title";
43
44 public static final String DC_CREATOR = DC_BASE + "creator";
45
46 public static final String DC_SUBJECT = DC_BASE + "subject";
47
48 public static final String DC_DESCRIPTION = DC_BASE + "description";
49
50 public static final String DC_PUBLISHER = DC_BASE + "publisher";
51
52 public static final String DC_CONTRIBUTOR = DC_BASE + "contributor";
53
54 public static final String DC_DATE = DC_BASE + "date";
55
56 public static final String DC_TYPE = DC_BASE + "type";
57
58 public static final String DC_FORMAT = DC_BASE + "format";
59
60 public static final String DC_IDENTIFIER = DC_BASE + "identifier";
61
62 public static final String DC_SOURCE = DC_BASE + "source";
63
64 public static final String DC_LANGUAGE = DC_BASE + "language";
65
66 public static final String DC_RELATION = DC_BASE + "relation";
67
68 public static final String DC_COVERAGE = DC_BASE + "coverage";
69
70 public static final String DC_RIGHTS = DC_BASE + "rights";
71
72 public static final String VERSION = WSML_BASE + "version";
73 }
74
75 /*
76 * $Log$
77 * Revision 1.10 2006/11/16 09:36:28 holgerlausen
78 * removed duplicated namespace definition occurences
79 *
80 * Revision 1.9 2006/01/13 10:22:29 vassil_momtchev
81 * changed from interface to final class
82 *
83 * Revision 1.8 2005/06/22 14:40:48 alex_simov
84 * Copyright header added/updated
85 *
86 * Revision 1.7 2005/06/01 10:30:48 marin_dimitrov
87 * v0.4.0
88 *
89 * Revision 1.4 2005/05/17 12:49:30 marin
90 * 1. added WSML_BASE
91 * 2. fixed "version"
92 *
93 * Revision 1.3 2005/05/12 13:29:16 marin
94 * javadoc, header, footer, etc
95 *
96 */