01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.query.parser.sparql;
07:
08: import org.openrdf.model.URI;
09: import org.openrdf.model.ValueFactory;
10: import org.openrdf.model.impl.ValueFactoryImpl;
11:
12: /**
13: * Constants for FOAF primitives and for the FOAF namespace.
14: */
15: public class FOAF {
16:
17: public static final String NAMESPACE = "http://xmlns.com/foaf/0.1/";
18:
19: public final static URI PERSON;
20:
21: static {
22: ValueFactory factory = ValueFactoryImpl.getInstance();
23: PERSON = factory.createURI(FOAF.NAMESPACE, "Person");
24: }
25: }
|