Package org.apache.tapestry5.services
Interface LinkCreationListener
- 
public interface LinkCreationListener
Deprecated.UseLinkCreationListener2insteadListener interface for objects that need to be notified about newly created links.- See Also:
 LinkCreationHub
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidcreatedComponentEventLink(Link link)Deprecated.Invoked when an action link (a link that asks a component to perform an action) is created.voidcreatedPageRenderLink(Link link)Deprecated.Invoked when a page link (a link that renders a page) is created. 
 - 
 
- 
- 
Method Detail
- 
createdPageRenderLink
void createdPageRenderLink(Link link)
Deprecated.Invoked when a page link (a link that renders a page) is created. The listener may decide to encode additional query parameters into the link (viaLink.addParameter(String, String)).- Parameters:
 link- the newly created link
 
- 
createdComponentEventLink
void createdComponentEventLink(Link link)
Deprecated.Invoked when an action link (a link that asks a component to perform an action) is created. The listener may decide to encode additional query parameters into the link (viaLink.addParameter(String, String)).- Parameters:
 link- the newly created link
 
 - 
 
 -