Files
Athou_commafeed/src/main/java/com/commafeed/frontend/pages/HomePage.java

13 lines
353 B
Java
Raw Normal View History

2013-03-23 16:17:19 +01:00
package com.commafeed.frontend.pages;
2013-03-20 20:33:42 +01:00
2013-03-21 18:40:09 +01:00
import org.apache.wicket.authroles.authorization.strategies.role.annotations.AuthorizeInstantiation;
import org.apache.wicket.markup.html.WebPage;
2013-03-21 16:22:58 +01:00
2013-03-23 16:17:19 +01:00
import com.commafeed.frontend.pages.auth.Role;
2013-03-20 20:33:42 +01:00
2013-03-21 08:55:53 +01:00
@SuppressWarnings("serial")
2013-03-21 18:40:09 +01:00
@AuthorizeInstantiation(Role.USER)
public class HomePage extends WebPage {
2013-03-21 16:22:58 +01:00
2013-03-20 20:33:42 +01:00
}