Author: keith
Date: Thu Apr 24 04:28:45 2008
New Revision: 16102

Log:

Making MashupConstants a class instead of an interface as per the code review


Modified:
   trunk/mashup/java/modules/core/src/org/wso2/mashup/MashupConstants.java

Modified: 
trunk/mashup/java/modules/core/src/org/wso2/mashup/MashupConstants.java
==============================================================================
--- trunk/mashup/java/modules/core/src/org/wso2/mashup/MashupConstants.java     
(original)
+++ trunk/mashup/java/modules/core/src/org/wso2/mashup/MashupConstants.java     
Thu Apr 24 04:28:45 2008
@@ -15,7 +15,7 @@
  */
 package org.wso2.mashup;
 
-public interface MashupConstants {
+public class MashupConstants {
 
     public static String MASHUP_SERVER_VERSION = "Version";
     public static String MASHUP_SERVER_UUID = "ServerUUID";
@@ -102,8 +102,8 @@
     public static final String INFOCARD_PPID = "ppid";
     public static final String INFOCARD_COUNT = "cardcount";
 
-    public static final int SHOW_RESULTS_COUNT =
-            5;    // How many results to show before showing "more".
+    // How many results to show before showing "more".
+    public static final int SHOW_RESULTS_COUNT = 5;
     public static final int MAX_RESULTS_COUNT = 1000;  // Maximum results to 
return.
 
     public static final String IMPOSSIBLE_VALUE = "[EMAIL PROTECTED]@";

_______________________________________________
Mashup-dev mailing list
[email protected]
http://www.wso2.org/cgi-bin/mailman/listinfo/mashup-dev

Reply via email to