1 package org.appfuse.webapp.components;
2
3 import org.apache.tapestry5.Asset;
4 import org.apache.tapestry5.annotations.Path;
5 import org.apache.tapestry5.annotations.Property;
6 import org.apache.tapestry5.ioc.annotations.Inject;
7
8 /**
9 * AppFuse meta component; used in the header
10 *
11 * @author Serge Eby
12 */
13 public class Meta {
14
15 @Property
16 @Inject
17 @Path("context:images/favicon.ico")
18 private Asset favoriteIcon;
19 }