You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by de...@apache.org on 2008/02/07 07:54:06 UTC

svn commit: r619291 - in /portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet: PortletRequestDispatcher.java PortletSession.java ResourceResponse.java

Author: dettborn
Date: Wed Feb  6 22:54:06 2008
New Revision: 619291

URL: http://svn.apache.org/viewvc?rev=619291&view=rev
Log:
API change for rev. 35
There must be no changes for the implementation.

Modified:
    portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletRequestDispatcher.java
    portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletSession.java
    portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/ResourceResponse.java

Modified: portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletRequestDispatcher.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletRequestDispatcher.java?rev=619291&r1=619290&r2=619291&view=diff
==============================================================================
--- portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletRequestDispatcher.java (original)
+++ portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletRequestDispatcher.java Wed Feb  6 22:54:06 2008
@@ -125,7 +125,7 @@
      * is automatically cleared before the forward.
      * <p>
      * The request and response parameters must be either the same objects as were passed to 
-     * the calling portletor be wrapped versions of these.
+     * the calling portlet or be wrapped versions of these.
      * 
      * @param request  a request object that represents the request to the 
      *                 portlet
@@ -141,7 +141,7 @@
      * @since 2.0
      */
     public void forward(PortletRequest request, PortletResponse response)
-            throws PortletException, java.io.IOException, java.lang.IllegalStateException;
+    throws PortletException, java.io.IOException;
 
     
 

Modified: portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletSession.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletSession.java?rev=619291&r1=619290&r2=619291&view=diff
==============================================================================
--- portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletSession.java (original)
+++ portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/PortletSession.java Wed Feb  6 22:54:06 2008
@@ -158,7 +158,7 @@
    *                            if no attributes are available in the given scope.
    *
    * @exception java.lang.IllegalStateException	if this method is called on an
-   *					invalidated session, or the scope is unkown to the container.   
+   *					invalidated session, or the scope is unknown to the container.      
    */
   
   public java.util.Enumeration<String> getAttributeNames(int scope);

Modified: portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/ResourceResponse.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/ResourceResponse.java?rev=619291&r1=619290&r2=619291&view=diff
==============================================================================
--- portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/ResourceResponse.java (original)
+++ portals/pluto/trunk/portlet2-api/src/main/java/javax/portlet/ResourceResponse.java Wed Feb  6 22:54:06 2008
@@ -106,19 +106,19 @@
      * @throws java.lang.IllegalStateException
      *             if the cacheability level of the resource URL
      *             triggering this <code>serveResource</code> call
-     *             is not <code>PAGE<code> and thus does not allow
+     *             is not <code>PAGE</code> and thus does not allow
      *             for creating render URLs.
      */
-	public PortletURL createRenderURL() throws java.lang.IllegalStateException;
+	public PortletURL createRenderURL();
 
 	/**
      * @throws java.lang.IllegalStateException
      *             if the cacheability level of the resource URL
      *             triggering this <code>serveResource</code> call
-     *             is not <code>PAGE<code> and thus does not allow
+     *             is not <code>PAGE</code> and thus does not allow
      *             for creating action URLs.
      */
-	public PortletURL createActionURL() throws java.lang.IllegalStateException;
+	public PortletURL createActionURL();
 
 	/**
      * @throws java.lang.IllegalStateException
@@ -127,8 +127,7 @@
      *             or one of the parent calls, have defined a stricter
      *             cachability level.
      */
-	public ResourceURL createResourceURL()
-			throws java.lang.IllegalStateException;
+	public ResourceURL createResourceURL();
 
 
 }