View Javadoc

1   /*
2    * Copyright James Leigh (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   * RSS vocabulary.
14   * 
15   * @author James Leigh
16   *
17   */
18  public final class RSS {
19  
20  	/** http://purl.org/rss/1.0/channel" target="alexandria_uri">http://purl.org/rss/1.0/channel */
21  	public static final String NAMESPACE = "http://purl.org/rss/1.0/";
22  
23  	/**  */
24  	public static final URI CHANNEL;
25  
26  	/** http://purl.org/rss/1.0/title" target="alexandria_uri">http://purl.org/rss/1.0/title */
27  	public static final URI TITLE;
28  
29  	/** http://purl.org/rss/1.0/description" target="alexandria_uri">http://purl.org/rss/1.0/description */
30  	public static final URI DESCRIPTION;
31  
32  	/** http://purl.org/rss/1.0/link" target="alexandria_uri">http://purl.org/rss/1.0/link */
33  	public static final URI LINK;
34  
35  	/** http://purl.org/rss/1.0/image" target="alexandria_uri">http://purl.org/rss/1.0/image */
36  	public static final URI IMAGE;
37  
38  	/** http://purl.org/rss/1.0/item" target="alexandria_uri">http://purl.org/rss/1.0/item */
39  	public static final URI ITEM;
40  
41  	/** http://purl.org/rss/1.0/items" target="alexandria_uri">http://purl.org/rss/1.0/items */
42  	public static final URI ITEMS;
43  
44  	/** http://purl.org/rss/1.0/textinput" target="alexandria_uri">http://purl.org/rss/1.0/textinput */
45  	public static final URI TEXTINPUT;
46  	static {
47  		ValueFactory factory = ValueFactoryImpl.getInstance();
48  		CHANNEL = factory.createURI(NAMESPACE, "channel");
49  		TITLE = factory.createURI(NAMESPACE, "title");
50  		DESCRIPTION = factory.createURI(NAMESPACE, "description");
51  		LINK = factory.createURI(NAMESPACE, "link");
52  		IMAGE = factory.createURI(NAMESPACE, "image");
53  		ITEM = factory.createURI(NAMESPACE, "item");
54  		ITEMS = factory.createURI(NAMESPACE, "items");
55  		TEXTINPUT = factory.createURI(NAMESPACE, "textinput");
56  	}
57  
58  }