View Javadoc

1   /*
2    wsmo4j - a WSMO API and Reference Implementation
3   
4    Copyright (c 2004-2005, OntoText Lab. / SIRMA
5   
6    This library is free software; you can redistribute it and/or modify it under
7    the terms of the GNU Lesser General Public License as published by the Free
8    Software Foundation; either version 2.1 of the License, or (at your option
9    any later version.
10   This library is distributed in the hope that it will be useful, but WITHOUT
11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12   FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13   details.
14   You should have received a copy of the GNU Lesser General Public License along
15   with this library; if not, write to the Free Software Foundation, Inc.,
16   59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17   */
18  
19  package com.ontotext.wsmo4j.parser.owl;
20  
21  import org.wsmo.common.WSML;
22  
23  
24  /**
25   * <p>Title: WSMO4J</p>
26   * <p>Description: WSMO API and a Reference Implementation. RDF vocabulary</p>
27   * <p>Copyright:  Copyright (c 2004-2005</p>
28   * <p>Company: OntoText Lab. / SIRMA </p>
29   * @author not attributable
30   * @version 1.0
31   *
32   */
33  
34  public class Constants {
35      public static String WSML_variant = WSML.WSML_NAMESPACE+"variant";
36      public static String WSML_wsml_core = WSML.WSML_NAMESPACE+"wsml_core";
37      public static String WSML_wsml_flight = WSML.WSML_NAMESPACE+"wsml_flight";
38      public static String WSML_wsml_rule = WSML.WSML_NAMESPACE+"wsml_rule";
39      public static String WSML_wsml_full = WSML.WSML_NAMESPACE+"wsml_full";
40  
41      public static String WSML_ontology = WSML.WSML_NAMESPACE+"ontology";
42      public static String WSML_concept = WSML.WSML_NAMESPACE+"concept";
43      public static String WSML_hasConcept = WSML.WSML_NAMESPACE+"hasConcept";
44      public static String WSML_attribute = WSML.WSML_NAMESPACE+"attribute";
45      public static String WSML_ofType = WSML.WSML_NAMESPACE+"ofType";
46      public static String WSML_impliesType = WSML.WSML_NAMESPACE+"impliesType";
47      public static String WSML_hasAttribute = WSML.WSML_NAMESPACE+"hasAttribute";
48      public static String WSML_transitiveAttribute = WSML.WSML_NAMESPACE+"transitiveAttribute";
49      public static String WSML_symmetricAttribute = WSML.WSML_NAMESPACE+"symmetricAttribute";
50      public static String WSML_reflexiveAttribute = WSML.WSML_NAMESPACE+"reflexiveAttribute";
51      public static String WSML_inverseOf = WSML.WSML_NAMESPACE+"inverseOf";
52      public static String WSML_minCardinality = WSML.WSML_NAMESPACE+"minCardinality";
53      public static String WSML_maxCardinality = WSML.WSML_NAMESPACE+"maxCardinality";
54      public static String WSML_instance = WSML.WSML_NAMESPACE+"instance";
55      public static String WSML_hasInstance = WSML.WSML_NAMESPACE+"hasInstance";
56      public static String WSML_relation = WSML.WSML_NAMESPACE+"relation";
57      public static String WSML_hasRelation = WSML.WSML_NAMESPACE+"hasRelation";
58      public static String WSML_arity = WSML.WSML_NAMESPACE+"arity";
59      public static String WSML_param = WSML.WSML_NAMESPACE+"param";
60      public static String WSML_subRelationOf = WSML.WSML_NAMESPACE+"subRelationOf";
61      public static String WSML_relationInstance = WSML.WSML_NAMESPACE+"relationInstance";
62      public static String WSML_hasRelationInstance = WSML.WSML_NAMESPACE+"hasRelationInstance";
63      public static String WSML_axiom = WSML.WSML_NAMESPACE+"axiom";
64      public static String WSML_hasAxiom = WSML.WSML_NAMESPACE+"hasAxiom";
65  
66      public static String WSML_goal = WSML.WSML_NAMESPACE+"goal";
67      public static String WSML_ooMediator = WSML.WSML_NAMESPACE+"ooMediator";
68      public static String WSML_ggMediator = WSML.WSML_NAMESPACE+"ggMediator";
69      public static String WSML_wgMediator = WSML.WSML_NAMESPACE+"wgMediator";
70      public static String WSML_wwMediator = WSML.WSML_NAMESPACE+"wwMediator";
71      public static String WSML_source = WSML.WSML_NAMESPACE+"source";
72      public static String WSML_target = WSML.WSML_NAMESPACE+"target";
73      public static String WSML_usesService = WSML.WSML_NAMESPACE+"usesService";
74      public static String WSML_webService = WSML.WSML_NAMESPACE+"webService";
75      public static String WSML_useInterface = WSML.WSML_NAMESPACE+"useInterface";
76      public static String WSML_useCapability = WSML.WSML_NAMESPACE+"useCapability";
77      public static String WSML_sharedVariables = WSML.WSML_NAMESPACE+"sharedVariables";
78      public static String WSML_precondition = WSML.WSML_NAMESPACE+"precondition";
79      public static String WSML_assumption = WSML.WSML_NAMESPACE+"assumption";
80      public static String WSML_postcondition = WSML.WSML_NAMESPACE+"postcondition";
81      public static String WSML_effect = WSML.WSML_NAMESPACE+"effect";
82      public static String WSML_choreography = WSML.WSML_NAMESPACE+"choreography";
83      public static String WSML_orchestration = WSML.WSML_NAMESPACE+"orchestration";
84      public static String WSML_capability = WSML.WSML_NAMESPACE+"capability";
85      public static String WSML_interface = WSML.WSML_NAMESPACE+"interface";
86      public static String WSML_nfp = WSML.WSML_NAMESPACE+"nfp";
87      public static String WSML_importsOntology = WSML.WSML_NAMESPACE+"importsOntology";
88      public static String WSML_usesMediator = WSML.WSML_NAMESPACE+"usesMediator";
89  
90      public static String WSML_false = WSML.WSML_NAMESPACE+"false";
91      public static String WSML_true = WSML.WSML_NAMESPACE+"true";
92  
93      public static String WSML_kind = WSML.WSML_NAMESPACE+"kind";
94  
95      public static String RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
96  
97      public static String RDF_type = RDF_NS+"type";
98      public static String RDF_XMLLiteral = RDF_NS+"XMLLiteral";
99      public static String RDF_List = RDF_NS+"List";
100     public static String RDF_first = RDF_NS+"first";
101     public static String RDF_rest = RDF_NS+"rest";
102     public static String RDF_Property = RDF_NS+"Property";
103     public static String RDF_nil = RDF_NS+"nil";
104 
105     public static String RDFS_NS = "http://www.w3.org/2000/01/rdf-schema#";
106 
107     public static String RDFS_subClassOf = RDFS_NS+"subClassOf";
108     public static String RDFS_range = RDFS_NS+"range";
109     public static String RDFS_label = RDFS_NS+"label";
110     public static String RDFS_comment = RDFS_NS+"comment";
111     public static String RDFS_seeAlso = RDFS_NS+"seeAlso";
112     public static String RDFS_isDefinedBy = RDFS_NS+"isDefinedBy";
113     public static String RDFS_domain = RDFS_NS+"domain";
114     public static String RDFS_Resource = RDFS_NS+"Resource";
115     public static String RDFS_Datatype = RDFS_NS+"Datatype";
116     public static String RDFS_Class = RDFS_NS+"Class";
117     public static String RDFS_subPropertyOf = RDFS_NS+"subPropertyOf";
118     public static String RDFS_member = RDFS_NS+"member";
119     public static String RDFS_Container = RDFS_NS+"Container";
120     public static String RDFS_ContainerMembershipProperty = RDFS_NS+"ContainerMembershipProperty";
121  
122     public static String DC_NS = "http://purl.org/dc/elements/1.1/";
123     public static String DC_relation = DC_NS+"relation";
124     public static String DC_title = DC_NS+"title";
125     public static String DC_subject = DC_NS+"subject";
126     public static String DC_description = DC_NS+"description";
127     public static String DC_contributor = DC_NS+"contributor";
128     public static String DC_date = DC_NS+"date";
129     public static String DC_format = DC_NS+"format";
130     public static String DC_language = DC_NS+"language";
131     public static String DC_rights = DC_NS+"rights";
132     public static String DC_type = DC_NS+"type";
133 
134     public static String XSD_NS = "http://www.w3.org/2001/XMLSchema#";
135     public static String XSD_string = XSD_NS+"string";
136     public static String XSD_integer = XSD_NS+"integer";
137     public static String XSD_decimal = XSD_NS+"decimal";
138     public static String XSD_date = XSD_NS+"date";
139     public static String XSD_anyURI = XSD_NS+"anyURI";
140 
141 }
142 
143 /*
144  * $Log$
145 /*
146  * Revision 1.4  2006/11/16 09:36:28  holgerlausen
147 /*
148  * removed duplicated namespace definition occurences
149 /*
150  *
151 /*
152  * Revision 1.3  2005/12/14 09:54:07  vassil_momtchev
153 /*
154  * changed all const from IRIto String [Constants, OWLConstants, WSMLFromOWL] - no more wsmo4j constructors invoked!
155 /*
156  * organized imports to use com.ontotext.* instead to list all used types (see the rest of code and the code convetion)
157 /*
158  * commented all non used local variables (all warnings removed)
159 /*
160  *
161 */