Advertisement
gayanhewa

LinkAction.java

Mar 26th, 2012
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. package example;
  2.  
  3.  
  4.  
  5. import com.opensymphony.xwork2.ActionSupport;
  6.  
  7. public class LinkAction extends ActionSupport {
  8.  
  9.     private static final long serialVersionUID = -26134258907568273L;
  10.  
  11.     public String welcome()
  12.     {
  13.         return "welcome";      
  14.     }
  15.    
  16.     public String friends()
  17.     {
  18.         return "friends";      
  19.     }
  20.    
  21.     public String office()
  22.     {
  23.         return "office";       
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement