Package com.linyan.action

Source Code of com.linyan.action.HelloWorldAction

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.linyan.action;

import com.linyan.model.MessageStore;
import com.opensymphony.xwork2.ActionSupport;
/**
*
* @author linyan
*/
public class HelloWorldAction extends ActionSupport{
    private static final long serialVersionUID = 1L;
    private MessageStore messageStore;
    public String excute(){
        messageStore = new MessageStore();
        return SUCCESS;
    }
    public MessageStore getMessageStore(){
        return messageStore;
    }
    public void setMessageStore(MessageStore messageStore){
        this.messageStore = messageStore;
    }
}
TOP

Related Classes of com.linyan.action.HelloWorldAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.