diff --git a/wicket/src/main/java/com/baeldung/wicket/examples/Examples.html b/wicket/src/main/java/com/baeldung/wicket/examples/HelloWorld.html
similarity index 100%
rename from wicket/src/main/java/com/baeldung/wicket/examples/Examples.html
rename to wicket/src/main/java/com/baeldung/wicket/examples/HelloWorld.html
diff --git a/wicket/src/main/java/com/baeldung/wicket/examples/Examples.java b/wicket/src/main/java/com/baeldung/wicket/examples/HelloWorld.java
similarity index 77%
rename from wicket/src/main/java/com/baeldung/wicket/examples/Examples.java
rename to wicket/src/main/java/com/baeldung/wicket/examples/HelloWorld.java
index 358e4f7b19..ceb0836467 100644
--- a/wicket/src/main/java/com/baeldung/wicket/examples/Examples.java
+++ b/wicket/src/main/java/com/baeldung/wicket/examples/HelloWorld.java
@@ -2,7 +2,7 @@ package com.baeldung.wicket.examples;
import org.apache.wicket.markup.html.WebPage;
-public class Examples extends WebPage {
+public class HelloWorld extends WebPage {
private static final long serialVersionUID = 1L;
diff --git a/wicket/src/main/java/com/baeldung/wicket/examples/ExamplesApplication.java b/wicket/src/main/java/com/baeldung/wicket/examples/HelloWorldApplication.java
similarity index 80%
rename from wicket/src/main/java/com/baeldung/wicket/examples/ExamplesApplication.java
rename to wicket/src/main/java/com/baeldung/wicket/examples/HelloWorldApplication.java
index 711e8f01fd..079280adce 100644
--- a/wicket/src/main/java/com/baeldung/wicket/examples/ExamplesApplication.java
+++ b/wicket/src/main/java/com/baeldung/wicket/examples/HelloWorldApplication.java
@@ -4,15 +4,14 @@ import org.apache.wicket.markup.html.WebPage;
import org.apache.wicket.protocol.http.WebApplication;
import com.baeldung.wicket.examples.cafeaddress.CafeAddress;
-import com.baeldung.wicket.examples.helloworld.HelloWorld;
-public class ExamplesApplication extends WebApplication {
+public class HelloWorldApplication extends WebApplication {
/**
* @see org.apache.wicket.Application#getHomePage()
*/
@Override
public Class extends WebPage> getHomePage() {
- return Examples.class;
+ return HelloWorld.class;
}
/**
diff --git a/wicket/src/main/test/java/com/baeldung/wicket/examples/TestHomePage.java b/wicket/src/main/test/java/com/baeldung/wicket/examples/TestHomePage.java
index a393f1d178..7015ffd255 100644
--- a/wicket/src/main/test/java/com/baeldung/wicket/examples/TestHomePage.java
+++ b/wicket/src/main/test/java/com/baeldung/wicket/examples/TestHomePage.java
@@ -9,15 +9,15 @@ public class TestHomePage {
@Before
public void setUp() {
- tester = new WicketTester(new ExamplesApplication());
+ tester = new WicketTester(new HelloWorldApplication());
}
@Test
public void whenPageInvoked_thanRenderedOK() {
//start and render the test page
- tester.startPage(Examples.class);
+ tester.startPage(HelloWorld.class);
//assert rendered page class
- tester.assertRenderedPage(Examples.class);
+ tester.assertRenderedPage(HelloWorld.class);
}
}
diff --git a/wicket/src/main/webapp/WEB-INF/web.xml b/wicket/src/main/webapp/WEB-INF/web.xml
index 8a4451c80e..8fc1b1aa95 100644
--- a/wicket/src/main/webapp/WEB-INF/web.xml
+++ b/wicket/src/main/webapp/WEB-INF/web.xml
@@ -21,7 +21,7 @@
org.apache.wicket.protocol.http.WicketFilter
applicationClassName
- com.baeldung.wicket.examples.ExamplesApplication
+ com.baeldung.wicket.examples.HelloWorldApplication