1 23 24 package org.infoglue.cms.applications.managementtool.actions; 25 26 import org.infoglue.cms.applications.common.actions.InfoGlueAbstractAction; 27 28 33 34 public class ViewManagementToolAction extends InfoGlueAbstractAction 35 { 36 private static final long serialVersionUID = 1L; 37 38 private Integer repositoryId = new Integer (0); 39 40 public void setRepositoryId(Integer repositoryId) 41 { 42 this.repositoryId = repositoryId; 43 } 44 45 public Integer getRepositoryId() 46 { 47 return this.repositoryId; 48 } 49 50 public String doExecute() throws Exception  51 { 52 return "success"; 53 } 54 55 } 56 | Popular Tags |