summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/webapps/helloworld-wicket/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'java/sca/samples/webapps/helloworld-wicket/src/main')
-rw-r--r--java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.html18
-rw-r--r--java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.java18
-rw-r--r--java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/IMyService.java18
-rw-r--r--java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/MyService.java18
-rw-r--r--java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/WicketApplication.java18
5 files changed, 90 insertions, 0 deletions
diff --git a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.html b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.html
index fd60771d20..61eb207e23 100644
--- a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.html
+++ b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.html
@@ -1,4 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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
+ *
+ * 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.
+-->
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Wicket Examples - guice</title>
diff --git a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.java b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.java
index 644d6add49..89b8d7eba4 100644
--- a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.java
+++ b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/HomePage.java
@@ -1,3 +1,21 @@
+/*
+ * 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
+ *
+ * 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.
+ */
package sample.wicket;
import org.apache.wicket.markup.html.WebPage;
diff --git a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/IMyService.java b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/IMyService.java
index 4b49225748..ab72a2b0f5 100644
--- a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/IMyService.java
+++ b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/IMyService.java
@@ -1,3 +1,21 @@
+/*
+ * 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
+ *
+ * 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.
+ */
package sample.wicket;
diff --git a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/MyService.java b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/MyService.java
index 05998ff74f..34d4dad625 100644
--- a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/MyService.java
+++ b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/MyService.java
@@ -1,3 +1,21 @@
+/*
+ * 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
+ *
+ * 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.
+ */
package sample.wicket;
diff --git a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/WicketApplication.java b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/WicketApplication.java
index 1d86f1ee39..d26b729898 100644
--- a/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/WicketApplication.java
+++ b/java/sca/samples/webapps/helloworld-wicket/src/main/java/sample/wicket/WicketApplication.java
@@ -1,3 +1,21 @@
+/*
+ * 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
+ *
+ * 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.
+ */
package sample.wicket;
import org.apache.wicket.Page;