Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Alignment API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
moex
Alignment API
Commits
eeea3176
Commit
eeea3176
authored
15 years ago
by
Jérôme Euzenat
Browse files
Options
Downloads
Patches
Plain Diff
- fully revised Namespace
- suppressed WSML namespaces - added SOAP-ENV - suppressed OMWG
parent
088a12bb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/fr/inrialpes/exmo/align/impl/Namespace.java
+9
-10
9 additions, 10 deletions
src/fr/inrialpes/exmo/align/impl/Namespace.java
with
9 additions
and
10 deletions
src/fr/inrialpes/exmo/align/impl/Namespace.java
+
9
−
10
View file @
eeea3176
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* Copyright (C) 2006 Digital Enterprise Research Insitute (DERI) Innsbruck
* Copyright (C) 2006 Digital Enterprise Research Insitute (DERI) Innsbruck
* Copyright (C) 2005 Digital Enterprise Research Insitute (DERI) Galway
* Copyright (C) 2005 Digital Enterprise Research Insitute (DERI) Galway
* Sourceforge version 1.2 - 2008 - then NamespaceDefs.java
* Sourceforge version 1.2 - 2008 - then NamespaceDefs.java
* Copyright (C) INRIA, 2008-200
9
* Copyright (C) INRIA, 2008-20
1
0
*
*
* This program is free software; you can redistribute it and/or modify
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* it under the terms of the GNU Lesser General Public License as published by
...
@@ -38,18 +38,17 @@ public enum Namespace {
...
@@ -38,18 +38,17 @@ public enum Namespace {
//ALIGNMENT("http://knowledgeweb.semanticweb.org/heterogeneity/alignment", "align"),
//ALIGNMENT("http://knowledgeweb.semanticweb.org/heterogeneity/alignment", "align"),
ALIGNMENT
(
"http://knowledgeweb.semanticweb.org/heterogeneity/alignment"
,
"align"
,
true
),
ALIGNMENT
(
"http://knowledgeweb.semanticweb.org/heterogeneity/alignment"
,
"align"
,
true
),
ALIGNSVC
(
"http://exmo.inrialpes.fr/align/service"
,
"alignsvc"
,
true
),
ALIGNSVC
(
"http://exmo.inrialpes.fr/align/service"
,
"alignsvc"
,
true
),
// JE2009: is this never used??
//OMWG("http://ns.inria.org/edoal/0.9", "omwg", true),
EDOAL
(
"http://ns.inria.org/edoal/1.0/"
,
"edoal"
,
true
),
EDOAL
(
"http://ns.inria.org/edoal/1.0/"
,
"edoal"
,
true
),
DUBLIN_CORE
(
"http://purl.org/dc/elements/1.1/"
,
"dc"
,
false
),
DUBLIN_CORE
(
"http://purl.org/dc/elements/1.1/"
,
"dc"
,
false
),
RDF_SCHEMA
(
"http://www.w3.org/2000/01/rdf-schema#"
,
"rdfs"
,
false
),
RDF_SCHEMA
(
"http://www.w3.org/2000/01/rdf-schema#"
,
"rdfs"
,
false
),
SOAP_ENV
(
"http://schemas.xmlsoap.org/soap/envelope/"
,
"soapenv"
,
false
),
XSD
(
"http://www.w3.org/2001/XMLSchema#"
,
"xsd"
,
false
),
XSD
(
"http://www.w3.org/2001/XMLSchema#"
,
"xsd"
,
false
),
RDF
(
"http://www.w3.org/1999/02/22-rdf-syntax-ns#"
,
"rdf"
,
false
)
,
RDF
(
"http://www.w3.org/1999/02/22-rdf-syntax-ns#"
,
"rdf"
,
false
)
;
WSML_CORE
(
"http://www.wsmo.org/wsml/wsml-syntax/wsml-core"
,
"wsml"
,
true
),
//
WSML_CORE("http://www.wsmo.org/wsml/wsml-syntax/wsml-core", "wsml", true),
WSML_FLIGHT
(
"http://www.wsmo.org/wsml/wsml-syntax/wsml-flight"
,
"wsml"
,
true
),
//
WSML_FLIGHT("http://www.wsmo.org/wsml/wsml-syntax/wsml-flight", "wsml", true),
WSML_RULE
(
"http://www.wsmo.org/wsml/wsml-syntax/wsml-rule"
,
"wsml"
,
true
),
//
WSML_RULE("http://www.wsmo.org/wsml/wsml-syntax/wsml-rule", "wsml", true),
WSML_DL
(
"http://www.wsmo.org/wsml/wsml-syntax/wsml-dl"
,
"wsml"
,
true
),
//
WSML_DL("http://www.wsmo.org/wsml/wsml-syntax/wsml-dl", "wsml", true),
WSML_FULL
(
"http://www.wsmo.org/wsml/wsml-syntax/wsml-full"
,
"wsml"
,
true
);
//
WSML_FULL("http://www.wsmo.org/wsml/wsml-syntax/wsml-full", "wsml", true);
public
final
String
uri
;
public
final
String
uri
;
...
@@ -60,7 +59,7 @@ public enum Namespace {
...
@@ -60,7 +59,7 @@ public enum Namespace {
*/
*/
private
final
boolean
addSharp
;
private
final
boolean
addSharp
;
p
rivate
String
prefix
;
p
ublic
final
String
prefix
;
private
static
final
Map
<
String
,
Namespace
>
register
=
new
HashMap
<
String
,
Namespace
>();
private
static
final
Map
<
String
,
Namespace
>
register
=
new
HashMap
<
String
,
Namespace
>();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment