IRIDepot.java
Go to the documentation of this file.
00001 /* \file IRIDepot.java
00002  * \brief An IRI depot
00003  *
00004  * The IRIDepot stores the IRIs of used OWL classes and properties.
00005  * 
00006  * This file is part of the RoboEarth ROS re_comm_core package.
00007  * 
00008  * It was originally created for <a href="http://www.roboearth.org/">RoboEarth</a>.
00009  * The research leading to these results has received funding from the 
00010  * European Union Seventh Framework Programme FP7/2007-2013 
00011  * under grant agreement no248942 RoboEarth.
00012  *
00013  * Copyright (C) 2010 by 
00014  * <a href=" mailto:perzylo@cs.tum.edu">Alexander Perzylo</a>
00015  * Technische Universitaet Muenchen
00016  * 
00017  * Redistribution and use in source and binary forms, with or without
00018  * modification, are permitted provided that the following conditions are met:
00019  * 
00020  *    <UL>
00021  *     <LI> Redistributions of source code must retain the above copyright
00022  *       notice, this list of conditions and the following disclaimer.
00023  *     <LI> Redistributions in binary form must reproduce the above copyright
00024  *       notice, this list of conditions and the following disclaimer in the
00025  *       documentation and/or other materials provided with the distribution.
00026  *     <LI> Neither the name of Willow Garage, Inc. nor the names of its
00027  *       contributors may be used to endorse or promote products derived from
00028  *       this software without specific prior written permission.
00029  *    </UL>
00030  * 
00031  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00032  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00033  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00034  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
00035  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
00036  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
00037  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
00038  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
00039  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
00040  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00041  * POSSIBILITY OF SUCH DAMAGE.
00042  *
00043  * \author Alexander Perzylo
00044  * \version 1.0
00045  * \date 2010
00046  * \image html http://www.roboearth.org/sites/default/files/RoboEarth.org_logo.gif
00047  * \image latex http://www.roboearth.org/sites/default/files/RoboEarth.org_logo.gif
00048  */
00049 package roboearth.wp5.owl;
00050 
00051 import org.semanticweb.owlapi.util.DefaultPrefixManager;
00052 
00064 public class IRIDepot {
00065 
00066         // Base IRI for RoboEarth 
00067         public final static String ROBOEARTH = "http://www.roboearth.org/kb/roboearth.owl#";
00068         
00069         // Base IRI for KnowRob 
00070         public final static String KNOWROB = "http://ias.cs.tum.edu/kb/knowrob.owl#";
00071 
00072         // Base IRI for OWL 
00073         public final static String OWL = "http://www.w3.org/2002/07/owl#";
00074         
00075         // Base IRI for OWL2-XML 
00076         public final static String OWL2XML = "http://www.w3.org/2006/12/owl2-xml#";
00077         
00078         // Base IRI for RDF
00079         public final static String RDF = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
00080         
00081         // Base IRI for RDFS
00082         public final static String RDFS = "http://www.w3.org/2000/01/rdf-schema#";
00083 
00084         // Base IRI for SRDL2 
00085         public final static String SRDL2="http://ias.cs.tum.edu/kb/srdl2.owl#";
00086         
00087         // Base IRI for SRDL2-CAP
00088         public final static String SRDL2_CAP = "http://ias.cs.tum.edu/kb/srdl2-cap.owl#";
00089 
00090         // Base IRI for SRDL2-COMP
00091         public final static String SRDL2_COMP = "http://ias.cs.tum.edu/kb/srdl2-comp.owl#";
00092 
00093         // Base IRI for XSD
00094         public final static String XSD = "http://www.w3.org/2001/XMLSchema#";
00095 
00096         
00097         // Prefix manager
00098         public final static DefaultPrefixManager PREFIX_MANAGER = new DefaultPrefixManager(IRIDepot.ROBOEARTH);
00099         static {
00100                 PREFIX_MANAGER.setPrefix("roboearth:", ROBOEARTH);
00101                 PREFIX_MANAGER.setPrefix("knowrob:", KNOWROB);
00102                 PREFIX_MANAGER.setPrefix("owl:", OWL);
00103                 PREFIX_MANAGER.setPrefix("owl2xml:", OWL2XML);
00104                 PREFIX_MANAGER.setPrefix("rdf:", RDF);
00105                 PREFIX_MANAGER.setPrefix("rdfs:", RDFS);
00106                 PREFIX_MANAGER.setPrefix("srdl2:", SRDL2);
00107                 PREFIX_MANAGER.setPrefix("srdl2-cap:", SRDL2_CAP);
00108                 PREFIX_MANAGER.setPrefix("srdl2-comp:", SRDL2_COMP);
00109                 PREFIX_MANAGER.setPrefix("xsd:", XSD);
00110         }
00111         
00112         // abbreviated IRIs of some RoboEarth classes
00113         public final static String ROBOEARTH_ROBOEARTH_RL_POLICY = "roboearth:RoboEarthRLPolicy";
00114         public final static String ROBOEARTH_RL_POLICY = "roboearth:ReinforcementLearningPolicy";
00115         public final static String ROBOEARTH_POLICY = "roboearth:Policy";
00116         public final static String ROBOEARTH_MAZE_LEARNING = "roboearth:RoboEarthMazeLearning";
00117         public final static String ROBOEARTH_OBJ_REC_MODEL_PLANAR = "roboearth:RoboEarthObjRecModelPlanar";
00118         public final static String ROBOEARTH_CUP = "roboearth:Cup";
00119         
00120         // abbreviated IRIs of some RoboEarth properties
00121         public final static String ROBOEARTH_CREATED_BY_ALGORITHM = "roboearth:createdByAlgorithm";
00122         public final static String ROBOEARTH_Q_MATRIX = "roboearth:qmatrix";
00123         public final static String ROBOEARTH_LINK_TO_RECOGNITION_MODEL = "roboearth:linkToRecognitionModel";
00124         public final static String ROBOEARTH_LINK_TO_IMAGE_DATA = "roboearth:linkToImageData";
00125         public final static String ROBOEARTH_CREATION_DATE_TIME = "roboearth:creationDateTime";
00126         public final static String ROBOEARTH_PROVIDES_MODEL_FOR = "roboearth:providesModelFor";
00127         
00128         // abbreviated IRIs of some KnowRob classes
00129         public final static String KNOWROB_ACTION = "knowrob:Action";
00130         public final static String KNOWROB_PARTIAL_ORDERING_STRICT = "knowrob:PartialOrdering-Strict";
00131         public final static String KNOWROB_VELOCITY_COMMAND = "knowrob:VelocityCommand";
00132         public final static String KNOWROB_MATRIX = "knowrob:Matrix";
00133         public final static String KNOWROB_CUP = "knowrob:Cup";
00134 
00135         // abbreviated IRIs of some KnowRob properties
00136         public final static String KNOWROB_SUBEVENTS = "knowrob:subEvents";
00137         public final static String KNOWROB_ORDERING_CONSTRAINTS = "knowrob:orderingConstraints";
00138         public final static String KNOWROB_OCCURS_BEFORE_IN_ORDERING = "knowrob:occursBeforeInOrdering";
00139         public final static String KNOWROB_OCCURS_AFTER_IN_ORDERING = "knowrob:occursAfterInOrdering";
00140         
00141         // abbreviated IRIs of some OWL classes
00142         public final static String OWL_CLASS = "owl:Class";
00143 
00144         // abbreviated IRIs of some RDFS properties
00145         public final static String RDFS_SUB_CLASS_OF = "rdfs:subClassOf";
00146         
00147 }


re_comm_core
Author(s): Alexander Perzylo
autogenerated on Sun Jan 5 2014 11:29:33