You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by eh...@apache.org on 2007/04/13 07:02:09 UTC

svn commit: r528357 - /incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java

Author: ehillenius
Date: Thu Apr 12 22:02:09 2007
New Revision: 528357

URL: http://svn.apache.org/viewvc?view=rev&rev=528357
Log:
added method for deprecation

Modified:
    incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java

Modified: incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java
URL: http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java?view=diff&rev=528357&r1=528356&r2=528357
==============================================================================
--- incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java (original)
+++ incubator/wicket/branches/wicket-1.x/jdk-1.4/wicket/src/main/java/org/apache/wicket/protocol/http/WebApplication.java Thu Apr 12 22:02:09 2007
@@ -770,4 +770,15 @@
 		}
 		return null;
 	}
+
+	// TODO remove after deprecation release
+
+	/**
+	 * @return
+	 * @deprecated Replaced by {@link #getRequestCycleFactory()}
+	 */
+	protected final IRequestCycleFactory getDefaultRequestCycleFactory()
+	{
+		throw new UnsupportedOperationException("obsolete method. see getRequestCycleFactory");
+	}
 }