1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package com.ontotext.ordi.wsmo4rdf;
19
20 /**
21 * All constants defined by http://www.wsmo.org/TR/d32/v0.1/,
22 *
23 * @author vassil
24 *
25 */
26 public class Constants {
27
28 public static String PART_WHOLE_NS = "http://www.w3.org/2001/sw/BestPractices/OEP/SimplePartWhole/part.owl#";
29
30 public static String PART_hasPart_directly = PART_WHOLE_NS
31 + "hasPart_directly";
32
33 public static String WSML_NS = "http://www.wsmo.org/wsml/wsml-syntax#";
34
35 public static String WSML_variant = WSML_NS + "variant";
36
37 public static String WSML_wsml_core = "http://www.wsmo.org/wsml/wsml-syntax/wsml_core";
38
39 public static String WSML_wsml_flight = "http://www.wsmo.org/wsml/wsml-syntax/wsml_flight";
40
41 public static String WSML_wsml_rule = "http://www.wsmo.org/wsml/wsml-syntax/wsml_rule";
42
43 public static String WSML_wsml_full = "http://www.wsmo.org/wsml/wsml-syntax/wsml_full";
44
45 public static String WSML_wsml_dl = "http://www.wsmo.org/wsml/wsml-syntax/wsml_dl";
46
47 public static String WSML_ontology = WSML_NS + "Ontology";
48
49 public static String WSML_attribute_definition = WSML_NS
50 + "AttributeDefinition";
51
52 public static String WSML_forAttribute = WSML_NS + "forAttribute";
53
54 public static String WSML_concept = WSML_NS + "Concept";
55
56 public static String WSML_Attribute = WSML_NS + "Attribute";
57
58 public static String WSML_ofType = WSML_NS + "ofType";
59
60 public static String WSML_impliesType = WSML_NS + "impliesType";
61
62 public static String WSML_transitiveAttributeDefinition = WSML_NS
63 + "TransitiveAttributeDefinition";
64
65 public static String WSML_symmetricAttributeDefinition = WSML_NS
66 + "SymmetricAttributeDefinition";
67
68 public static String WSML_reflexiveAttributeDefinition = WSML_NS
69 + "ReflexiveAttributeDefinition";
70
71 public static String WSML_inverseOf = WSML_NS + "inverseOf";
72
73 public static String WSML_minCardinality = WSML_NS + "minCardinality";
74
75 public static String WSML_maxCardinality = WSML_NS + "maxCardinality";
76
77 public static String WSML_Cardinality = WSML_NS + "Cardinality";
78
79 public static String WSML_Relation = WSML_NS + "Relation";
80
81 public static String WSML_arity = WSML_NS + "arity";
82
83 public static String WSML_ParameterDefinition = WSML_NS
84 + "ParameterDefinition";
85
86 public static String WSML_subRelationOf = WSML_NS + "subRelationOf";
87
88 public static String WSML_RelationInstance = WSML_NS + "RelationInstance";
89
90 public static String WSML_axiom = WSML_NS + "Axiom";
91
92 public static String WSML_goal = WSML_NS + "goal";
93
94 public static String WSML_ooMediator = WSML_NS + "ooMediator";
95
96 public static String WSML_ggMediator = WSML_NS + "ggMediator";
97
98 public static String WSML_wgMediator = WSML_NS + "wgMediator";
99
100 public static String WSML_wwMediator = WSML_NS + "wwMediator";
101
102 public static String WSML_source = WSML_NS + "source";
103
104 public static String WSML_target = WSML_NS + "target";
105
106 public static String WSML_usesService = WSML_NS + "usesService";
107
108 public static String WSML_webService = WSML_NS + "webService";
109
110 public static String WSML_sharedVariable = WSML_NS + "sharedVariable";
111
112 public static String WSML_hasPrecondition = WSML_NS + "hasPrecondition";
113
114 public static String WSML_hasAssumption = WSML_NS + "hasAssumption";
115
116 public static String WSML_hasPostcondition = WSML_NS + "hasPostcondition";
117
118 public static String WSML_hasEffect = WSML_NS + "hasEffect";
119
120 public static String WSML_Choreography = WSML_NS + "Choreography";
121
122 public static String WSML_Orchestration = WSML_NS + "Orchestration";
123
124 public static String WSML_Capability = WSML_NS + "Capability";
125
126 public static String WSML_Interface = WSML_NS + "Interface";
127
128 public static String WSML_importsOntology = WSML_NS + "importsOntology";
129
130 public static String WSML_usesMediator = WSML_NS + "usesMediator";
131
132 public static String WSML_false = WSML_NS + "false";
133
134 public static String WSML_true = WSML_NS + "true";
135
136 public static String RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
137
138 public static String RDF_type = RDF_NS + "type";
139
140 public static String RDF_XMLLiteral = RDF_NS + "XMLLiteral";
141
142 public static String RDF_List = RDF_NS + "List";
143
144 public static String RDF_first = RDF_NS + "first";
145
146 public static String RDF_rest = RDF_NS + "rest";
147
148 public static String RDF_Property = RDF_NS + "Property";
149
150 public static String RDF_nil = RDF_NS + "nil";
151
152 public static String RDFS_NS = "http://www.w3.org/2000/01/rdf-schema#";
153
154 public static String RDFS_subClassOf = RDFS_NS + "subClassOf";
155
156 public static String RDFS_range = RDFS_NS + "range";
157
158 public static String RDFS_label = RDFS_NS + "label";
159
160 public static String RDFS_comment = RDFS_NS + "comment";
161
162 public static String RDFS_seeAlso = RDFS_NS + "seeAlso";
163
164 public static String RDFS_isDefinedBy = RDFS_NS + "isDefinedBy";
165
166 public static String RDFS_domain = RDFS_NS + "domain";
167
168 public static String RDFS_Resource = RDFS_NS + "Resource";
169
170 public static String RDFS_Datatype = RDFS_NS + "Datatype";
171
172 public static String RDFS_Class = RDFS_NS + "Class";
173
174 public static String RDFS_subPropertyOf = RDFS_NS + "subPropertyOf";
175
176 public static String RDFS_member = RDFS_NS + "member";
177
178 public static String RDFS_Container = RDFS_NS + "Container";
179
180 public static String RDFS_ContainerMembershipProperty = RDFS_NS
181 + "ContainerMembershipProperty";
182
183 public static String DC_NS = "http://purl.org/dc/elements/1.1/";
184
185 public static String DC_relation = DC_NS + "relation";
186
187 public static String DC_title = DC_NS + "title";
188
189 public static String DC_subject = DC_NS + "subject";
190
191 public static String DC_description = DC_NS + "description";
192
193 public static String DC_contributor = DC_NS + "contributor";
194
195 public static String DC_date = DC_NS + "date";
196
197 public static String DC_format = DC_NS + "format";
198
199 public static String DC_language = DC_NS + "language";
200
201 public static String DC_rights = DC_NS + "rights";
202
203 public static String DC_type = DC_NS + "type";
204
205 public static String XSD_NS = "http://www.w3.org/2001/XMLSchema#";
206
207 public static String XSD_string = XSD_NS + "string";
208
209 public static String XSD_integer = XSD_NS + "integer";
210
211 public static String XSD_decimal = XSD_NS + "decimal";
212
213 public static String XSD_date = XSD_NS + "date";
214
215 public static String XSD_anyURI = XSD_NS + "anyURI";
216
217 public static String XSD_nonNegateiveInteger = XSD_NS
218 + "nonNegativeInteger";
219
220 public static String OWL_NS = "http://www.w3.org/2002/07/owl#";
221
222 public static String OWL_AnnotationProperty = OWL_NS + "AnnotationProperty";
223
224 }