FileDocCategorySizeDatePackage
UsersAvailableAction.javaAPI DocApache Struts 2.0.9 Apps1613Mon Jul 23 13:43:26 BST 2007org.apache.struts2.showcase.chat

UsersAvailableAction

public class UsersAvailableAction extends com.opensymphony.xwork2.ActionSupport

Fields Summary
private static final long
serialVersionUID
private List
availableUsers
private ChatService
chatService
Constructors Summary
public UsersAvailableAction(ChatService chatService)


       
        this.chatService = chatService;
    
Methods Summary
public java.lang.Stringexecute()


        availableUsers = chatService.getAvailableUsers();

        return SUCCESS;
    
public java.util.ListgetAvailableUsers()

        return availableUsers;