|
1 |
| |
|
2 |
| package photospace.meta.rdf; |
|
3 |
| import com.hp.hpl.jena.rdf.model.*; |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| |
|
8 |
| |
|
9 |
| public class ContentVocab { |
|
10 |
| |
|
11 |
| private static Model m_model = ModelFactory.createDefaultModel(); |
|
12 |
| |
|
13 |
| |
|
14 |
| public static final String NS = "http://www.w3.org/2000/PhotoRDF/content-1-0#"; |
|
15 |
| |
|
16 |
| |
|
17 |
| |
|
18 |
10
| public static String getURI() {return NS;}
|
|
19 |
| |
|
20 |
| |
|
21 |
| public static final Resource NAMESPACE = m_model.createResource( NS ); |
|
22 |
| |
|
23 |
| public static final Resource KEYWORDS = m_model.createResource( "http://www.w3.org/2000/PhotoRDF/content-1-0#Keywords" ); |
|
24 |
| |
|
25 |
| } |