Author: jkuhnert
Date: Sun Mar  4 09:16:06 2007
New Revision: 514439

URL: http://svn.apache.org/viewvc?view=rev&rev=514439
Log:
Resolves TAPESTRY-1305. 

Modified:
    
tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/engine/ServiceEncodingImpl.java

Modified: 
tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/engine/ServiceEncodingImpl.java
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/engine/ServiceEncodingImpl.java?view=diff&rev=514439&r1=514438&r2=514439
==============================================================================
--- 
tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/engine/ServiceEncodingImpl.java
 (original)
+++ 
tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/engine/ServiceEncodingImpl.java
 Sun Mar  4 09:16:06 2007
@@ -28,18 +28,18 @@
  */
 public class ServiceEncodingImpl implements ServiceEncoding
 {
-    private String _servletPath;
+    protected String _servletPath;
 
-    private String _pathInfo;
+    protected String _pathInfo;
 
     /**
      * Map of query parameter values; key is string name, value is either a 
string, an array of
      * strings, or null. Could have done this with subclassing rather than 
delegation.
      */
 
-    private final QueryParameterMap _parameters;
+    protected final QueryParameterMap _parameters;
 
-    private boolean _modified;
+    protected boolean _modified;
 
     /**
      * Creates a new instance with a new map of parameters.


Reply via email to