Author: frankbille
Date: Sun Jan 14 00:56:26 2007
New Revision: 496038
URL: http://svn.apache.org/viewvc?view=rev&rev=496038
Log:
WICKET-151
Modified:
incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartApplication.java
incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartSession.java
Modified:
incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartApplication.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartApplication.java?view=diff&rev=496038&r1=496037&r2=496038
==============================================================================
---
incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartApplication.java
(original)
+++
incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartApplication.java
Sun Jan 14 00:56:26 2007
@@ -58,7 +58,7 @@
{
public Session newSession(Request request)
{
- return new QuickStartSession(QuickStartApplication.this);
+ return new QuickStartSession(QuickStartApplication.this,
request);
}
};
}
Modified:
incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartSession.java
URL:
http://svn.apache.org/viewvc/incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartSession.java?view=diff&rev=496038&r1=496037&r2=496038
==============================================================================
---
incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartSession.java
(original)
+++
incubator/wicket/branches/wicket-1.x/wicket-quickstart/src/main/java/wicket/quickstart/QuickStartSession.java
Sun Jan 14 00:56:26 2007
@@ -1,21 +1,22 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
+ * contributor license agreements. See the NOTICE file distributed with this
+ * work for additional information regarding copyright ownership. The ASF
+ * licenses this file to You under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
* Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations
under
+ * the License.
*/
package wicket.quickstart;
+import wicket.Request;
import wicket.protocol.http.WebApplication;
import wicket.protocol.http.WebSession;
@@ -27,16 +28,18 @@
*/
public final class QuickStartSession extends WebSession
{
- // TODO Add any session properties here
+ // TODO Add any session properties here
/**
* Constructor
*
* @param application
* The application
+ * @param request
+ * The request
*/
- protected QuickStartSession(final WebApplication application)
+ protected QuickStartSession(final WebApplication application, final
Request request)
{
- super(application);
+ super(application, request);
}
}