1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.any23.vocab;
19
20 import org.eclipse.rdf4j.model.IRI;
21
22
23
24
25
26
27 public class HEntry extends Vocabulary {
28
29 public static final String NS = SINDICE.NS + "hentry/";
30
31 private static HEntry instance;
32
33 public static HEntry getInstance() {
34 if (instance == null) {
35 instance = new HEntry();
36 }
37 return instance;
38 }
39
40 public IRI Entry = createClass(NS, "Entry");
41 public IRI author = createClass(NS, "author");
42 public IRI location = createClass(NS, "location");
43
44 public IRI name = createProperty(NS, "name");
45 public IRI summary = createProperty(NS, "summary");
46 public IRI content = createProperty(NS, "content");
47 public IRI published = createProperty(NS, "published");
48 public IRI updated = createProperty(NS, "updated");
49 public IRI category = createProperty(NS, "category");
50 public IRI url = createProperty(NS, "url");
51 public IRI uid = createProperty(NS, "uid");
52 public IRI syndication = createProperty(NS, "syndication");
53 public IRI in_reply_to = createProperty(NS, "in-reply-to");
54
55 private HEntry() {
56 super(NS);
57 }
58
59 }