1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17 package org.apache.any23.vocab;
18
19 import org.eclipse.rdf4j.model.IRI;
20
21 /**
22 * <p>
23 * An implementation of the <a href="https://github.com/RinkeHoekstra/lkif-core">lkif-core</a> vocabulary which is a
24 * library of ontologies relevant for the legal domain. The library consists of 15 modules, each of which describes a
25 * set of closely related concepts from both legal and commonsense domains.
26 * </p>
27 *
28 * <p>
29 * The legal action module extends the action module with a number of legal concepts related to action and agent, such
30 * as public acts, public bodies, legal person, natural person etc.
31 * </p>
32 *
33 * @author lewismc
34 *
35 */
36 public class LKIFCoreLegalAction extends Vocabulary {
37
38 /**
39 * The namespace of the vocabulary as a string.
40 */
41 public static final String NS = "http://www.estrellaproject.org/lkif-core/legal-action.owl#";
42
43 private static LKIFCoreLegalAction instance;
44
45 public static LKIFCoreLegalAction getInstance() {
46 if (instance == null) {
47 instance = new LKIFCoreLegalAction();
48 }
49 return instance;
50 }
51
52 ////////////////////////////////////////////////////////////////
53 /* http://www.estrellaproject.org/lkif-core/legal-action.owl# */
54 ////////////////////////////////////////////////////////////////
55 // CLASSES
56 public final IRI Limited_Company = createClass(NS, "Limited_Company");
57 public final IRI Private_Legal_Person = createClass(NS, "Private_Legal_Person");
58 public final IRI Society = createClass(NS, "Society");
59 public final IRI Natural_Person = createClass(NS, "Natural_Person");
60 public final IRI Mandate = createClass(NS, "Mandate");
61 public final IRI Corporation = createClass(NS, "Corporation");
62 public final IRI Legal_Person = createClass(NS, "Legal_Person");
63 public final IRI Public_Body = createClass(NS, "Public_Body");
64 public final IRI Foundation = createClass(NS, "Foundation");
65 public final IRI Co_operative = createClass(NS, "Co-operative");
66 public final IRI Legislative_Body = createClass(NS, "Legislative_Body");
67 public final IRI Delegation = createClass(NS, "Delegation");
68 public final IRI Legal_Speech_Act = createClass(NS, "Legal_Speech_Act");
69 public final IRI Public_Act = createClass(NS, "Public_Act");
70 public final IRI Company = createClass(NS, "Company");
71 public final IRI Decision = createClass(NS, "Decision");
72 public final IRI Public_Limited_Company = createClass(NS, "Public_Limited_Company");
73 public final IRI Incorporated = createClass(NS, "Incorporated");
74 public final IRI Act_of_Law = createClass(NS, "Act_of_Law");
75 public final IRI Association = createClass(NS, "Association");
76 public final IRI Assignment = createClass(NS, "Assignment");
77 public final IRI Unincorporated = createClass(NS, "Unincorporated");
78
79 // RESOURCES
80
81 // PROPERTIES
82
83 private LKIFCoreLegalAction() {
84 super(NS);
85 }
86
87 }