[jboss-svn-commits] JBL Code SVN: r17361 - labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/services/jbossesb/src/main/java/org/jboss/internal/soa/esb/persistence/format/db.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Dec 21 16:07:03 EST 2007


Author: mark.little at jboss.com
Date: 2007-12-21 16:07:03 -0500 (Fri, 21 Dec 2007)
New Revision: 17361

Modified:
   labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/services/jbossesb/src/main/java/org/jboss/internal/soa/esb/persistence/format/db/DBMessageStoreImpl.java
Log:
http://jira.jboss.com/jira/browse/JBESB-1405

Modified: labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/services/jbossesb/src/main/java/org/jboss/internal/soa/esb/persistence/format/db/DBMessageStoreImpl.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/services/jbossesb/src/main/java/org/jboss/internal/soa/esb/persistence/format/db/DBMessageStoreImpl.java	2007-12-21 20:20:18 UTC (rev 17360)
+++ labs/jbossesb/branches/JBESB_4_2_1_GA_CP/product/services/jbossesb/src/main/java/org/jboss/internal/soa/esb/persistence/format/db/DBMessageStoreImpl.java	2007-12-21 21:07:03 UTC (rev 17361)
@@ -52,7 +52,7 @@
 public class DBMessageStoreImpl implements RedeliverStore
 {
     public static final String DEFAULT_TABLE_NAME = "message";
-    public static final String UNCLASSIFIED_CLASSIFICATION = "UNCLASSIFIED";
+    public static final String UNCLASSIFIED_CLASSIFICATION = "NONE";
     
 	private Logger logger = Logger.getLogger(this.getClass());
 
@@ -80,7 +80,7 @@
 	/**
 	 * add's a @Message to the database persistence store
 	 * will set the 'delivered' flag to TRUE by default - assuming that the @Message has been delivered
-	 * If classification is null or "", then UNCLASSIFIED will be used.
+	 * If classification is null or "", then NONE will be used.
 	 */
 	public synchronized URI addMessage (Message message, String classification) throws MessageStoreException
 	{
@@ -150,7 +150,7 @@
     /**
      * remove a @Message based on the passed in key in the form of a JBoss ESB @URI
      * format for URI: "urn:jboss/esb/message/UID#" + UUID.randomUUID()" - see the method in this class @removeMessage
-     * If classification is null or "", then UNCLASSIFIED will be used.
+     * If classification is null or "", then NONE will be used.
      */
     public synchronized int removeMessage (URI uid, String classification)
             throws MessageStoreException




More information about the jboss-svn-commits mailing list