From d837ca25adbc8e34f8d811dfc31e511ff2db6f5a Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Mon, 3 Mar 2014 11:31:45 +0100 Subject: [PATCH] [#3096] Add Constants.XSD_RUNTIME, NS_RUNTIME, XSD_CODEGEN, NS_CODEGEN --- jOOQ/src/main/java/org/jooq/Constants.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/jOOQ/src/main/java/org/jooq/Constants.java b/jOOQ/src/main/java/org/jooq/Constants.java index 0390477cb7..5c2d8b456f 100644 --- a/jOOQ/src/main/java/org/jooq/Constants.java +++ b/jOOQ/src/main/java/org/jooq/Constants.java @@ -68,6 +68,26 @@ public final class Constants { */ public static final String FULL_VERSION = "3.4.0"; + /** + * The current jooq-runtime XSD file name. + */ + public static final String XSD_RUNTIME = "jooq-runtime-3.3.0.xsd"; + + /** + * The current jooq-runtime XML namespace + */ + public static final String NS_RUNTIME = "http://www.jooq.org/xsd/jooq-runtime-3.3.0.xsd"; + + /** + * The current jooq-codegen XSD file name. + */ + public static final String XSD_CODEGEN = "jooq-codegen-3.4.0.xsd"; + + /** + * The current jooq-codegen XML namespace. + */ + public static final String NS_CODEGEN = "http://www.jooq.org/xsd/jooq-codegen-3.4.0.xsd"; + /** * The maximum degree of {@link Row} and {@link Record} subtypes */