just before adding authorization service.
[photos] / src / main / java / org / wamblee / photos / wicket / HomePage.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.photos.wicket;
17
18 import java.util.List;
19
20 import javax.inject.Inject;
21
22 import org.apache.wicket.PageParameters;
23 import org.apache.wicket.markup.html.basic.Label;
24 import org.wamblee.photos.model.Album;
25 import org.wamblee.photos.model.PhotoEntry;
26 import org.wamblee.photos.model.plumbing.AllPhotos;
27 import org.wamblee.security.authentication.User;
28 import org.wamblee.security.authentication.UserAdministration;
29
30 /**
31  * Homepage
32  */
33 public class HomePage extends BasePage {
34
35     private static final long serialVersionUID = 1L;
36
37     @Inject
38     private User user;
39
40     @Inject
41     private UserAdministration userAdmin;
42
43     @Inject
44     @AllPhotos
45     private Album album;
46
47     /**
48      * Constructor that is invoked when page is invoked without a session.
49      * 
50      * @param parameters
51      *            Page parameters
52      */
53     public HomePage(final PageParameters parameters) throws Exception {
54         super();
55         add(new Label("message", "Hello world!"));
56
57         System.out.println("Currently logged in user: " + user);
58
59         List<String> usernames = userAdmin.getUsers();
60         System.out.println("All user names: " + usernames);
61
62         usernames = userAdmin.getUsers("public");
63         System.out.println("Users in group public: " + usernames);
64
65         System.out.println("Entries: " + album.size());
66         for (int i = 0; i < album.size(); i++) {
67             PhotoEntry entry = album.getEntry(i);
68             System.out.println("Entry " + i + " " + entry.getId() + " " +
69                 entry.getPath());
70         }
71     }
72 }