1 /*
2 * Copyright Peter Mika (c) 2007.
3 *
4 * Licensed under the Aduna BSD-style license.
5 */
6 package org.openrdf.model.vocabulary;
7
8 import org.openrdf.model.URI;
9 import org.openrdf.model.ValueFactory;
10 import org.openrdf.model.impl.ValueFactoryImpl;
11
12 /**
13 * FOAF vocabulary.
14 *
15 * @author Peter Mika <pmika@yahoo-inc.com>
16 *
17 */
18 public final class FOAF {
19
20 //TODO: complete vocabulary
21
22 /** http://xmlns.com/foaf/0.1/" target="alexandria_uri">http://xmlns.com/foaf/0.1/ */
23 public final static String NAMESPACE = "http://xmlns.com/foaf/0.1/";
24
25 /** http://xmlns.com/foaf/0.1/Person" target="alexandria_uri">http://xmlns.com/foaf/0.1/Person */
26 public final static URI PERSON;
27 static {
28 ValueFactory factory = new ValueFactoryImpl();
29 PERSON = factory.createURI(NAMESPACE, "Person");
30 }
31
32 }
33