You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by es...@apache.org on 2007/08/01 06:32:47 UTC

svn commit: r561645 - in /portals/wsrp4j/branches/wsrp4j-pluto11/src: java/org/apache/wsrp4j/producer/provider/pluto/driver/Messages.java webapp/WEB-INF/classes/ProducerMessages.properties

Author: esm
Date: Tue Jul 31 21:32:46 2007
New Revision: 561645

URL: http://svn.apache.org/viewvc?view=rev&rev=561645
Log:
Adding log messages.

Added:
    portals/wsrp4j/branches/wsrp4j-pluto11/src/java/org/apache/wsrp4j/producer/provider/pluto/driver/Messages.java
    portals/wsrp4j/branches/wsrp4j-pluto11/src/webapp/WEB-INF/classes/ProducerMessages.properties

Added: portals/wsrp4j/branches/wsrp4j-pluto11/src/java/org/apache/wsrp4j/producer/provider/pluto/driver/Messages.java
URL: http://svn.apache.org/viewvc/portals/wsrp4j/branches/wsrp4j-pluto11/src/java/org/apache/wsrp4j/producer/provider/pluto/driver/Messages.java?view=auto&rev=561645
==============================================================================
--- portals/wsrp4j/branches/wsrp4j-pluto11/src/java/org/apache/wsrp4j/producer/provider/pluto/driver/Messages.java (added)
+++ portals/wsrp4j/branches/wsrp4j-pluto11/src/java/org/apache/wsrp4j/producer/provider/pluto/driver/Messages.java Tue Jul 31 21:32:46 2007
@@ -0,0 +1,14 @@
+package org.apache.wsrp4j.producer.provider.pluto.driver;
+
+import java.util.ResourceBundle;
+
+/**
+ * Keys for looking up messages from resource bundles.
+ */
+interface Messages
+{
+    static final ResourceBundle BUNDLE = ResourceBundle.getBundle( "ProducerMessages" );
+    static final String MISSINGELEMENT = "Driver.DescriptionHandler.PortletDescription.missingElement";
+    static final String PORTLETREMOVED = "Driver.DescriptionHandler.DescriptionCache.removeEvent";
+    static final String REGISTRYEVENT = "Driver.DescriptionHandler.PortletRegistry.receivedEvent";
+}

Added: portals/wsrp4j/branches/wsrp4j-pluto11/src/webapp/WEB-INF/classes/ProducerMessages.properties
URL: http://svn.apache.org/viewvc/portals/wsrp4j/branches/wsrp4j-pluto11/src/webapp/WEB-INF/classes/ProducerMessages.properties?view=auto&rev=561645
==============================================================================
--- portals/wsrp4j/branches/wsrp4j-pluto11/src/webapp/WEB-INF/classes/ProducerMessages.properties (added)
+++ portals/wsrp4j/branches/wsrp4j-pluto11/src/webapp/WEB-INF/classes/ProducerMessages.properties Tue Jul 31 21:32:46 2007
@@ -0,0 +1,14 @@
+#
+# Exception messages
+#
+Driver.DescriptionHandler.PortletDescription.missingElement = Portlet [{0}] [{1}] does not have a {2} \
+    element nested inside of {3}, or the contents of {2} are empty.
+Driver.DescriptionHandler.PortletRegistry.receivedEvent = Received portlet application removed event \
+    for  [{0}]
+Driver.DescriptionHandler.DescriptionCache.removeEvent = Removing description for portlet [{0}] from \
+    the service description cache.
+#Driver.DescriptionHandler.DescriptionCache.registerEvent = Adding description for portlet [{0}] from \
+#    the service description cache.
+
+
+