/** * Copyright (c)2010-2011 Enterprise Website Content Management System(EWCMS), All rights reserved. * EWCMS PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * http://www.ewcms.com */ package com.ewcms.content.document.web; import com.opensymphony.xwork2.ActionSupport; /** * * @author 吴智俊 */ public class HistoryAction extends ActionSupport { private static final long serialVersionUID = -7033704041589731104L; private Integer articleId; public Integer getArticleId() { return articleId; } public void setArticleId(Integer articleId) { this.articleId = articleId; } @Override public String execute() throws Exception { return SUCCESS; } }