You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2007/10/05 15:16:40 UTC

svn commit: r582248 - in /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf: OrchestraApplication.java SerializableConverter.java

Author: skitching
Date: Fri Oct  5 06:16:39 2007
New Revision: 582248

URL: http://svn.apache.org/viewvc?rev=582248&view=rev
Log:
Just comment/javadoc updates.

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplication.java
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/SerializableConverter.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplication.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplication.java?rev=582248&r1=582247&r2=582248&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplication.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraApplication.java Fri Oct  5 06:16:39 2007
@@ -51,6 +51,12 @@
  *	<li>configure a converter in the spring configuration to get in use of the persistence dependency injections</li>
  * </ul>
  */
+
+// There is a technical problem here: Orchestra should be usable on both JSF1.1 and JSF1.2.
+// Ideally we would compile against JSF1.1, and JSF1.2 would be backwards-compatible with it.
+// Unfortunately, that is surprisingly hard to achieve. Any suggestions welcome!
+// In the meantime, we compile against JSF1.2 then test against JSF1.1 to verify compatibility :-(.
+
 public class OrchestraApplication extends Application
 {
 	private final Application original;

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/SerializableConverter.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/SerializableConverter.java?rev=582248&r1=582247&r2=582248&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/SerializableConverter.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/SerializableConverter.java Fri Oct  5 06:16:39 2007
@@ -27,7 +27,7 @@
 import java.io.Serializable;
 
 /**
- * Wrapes a converter and serialize just its id to make it serializable.
+ * Wraps a converter and serialize just its id to make it serializable.
  */
 public class SerializableConverter implements Converter, Serializable
 {