From 22094368c2865dcfb6daf8366425212b721a4657 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 05 Feb 2009 17:42:14 +0000
Subject: [PATCH] Merge ASN1 branch to trunk
---
opends/src/server/org/opends/server/util/ServerConstants.java | 17 ++++++++++++++++-
1 files changed, 16 insertions(+), 1 deletions(-)
diff --git a/opends/src/server/org/opends/server/util/ServerConstants.java b/opends/src/server/org/opends/server/util/ServerConstants.java
index 084cb82..15934a0 100644
--- a/opends/src/server/org/opends/server/util/ServerConstants.java
+++ b/opends/src/server/org/opends/server/util/ServerConstants.java
@@ -26,7 +26,7 @@
*/
package org.opends.server.util;
-
+import org.opends.server.types.ByteString;
/**
* This class defines a set of constants that may be referenced throughout the
@@ -2969,5 +2969,20 @@
"",
"CDDL HEADER END"
};
+
+ /**
+ * The value representing just one space character.
+ */
+ public static final ByteString SINGLE_SPACE_VALUE = ByteString.valueOf(" ");
+
+ /**
+ * The normalized true value.
+ */
+ public static final ByteString TRUE_VALUE = ByteString.valueOf("TRUE");
+
+ /**
+ * The normalized false value.
+ */
+ public static final ByteString FALSE_VALUE = ByteString.valueOf("FALSE");
}
--
Gitblit v1.10.0