1 23 24 package org.infoglue.cms.applications.contenttool.actions; 25 26 31 32 public interface ViewContentTreeActionInterface 33 { 34 public abstract void setRepositoryId(Integer repositoryId); 35 public abstract Integer getRepositoryId(); 36 public abstract void setContentId(Integer contentId); 37 public abstract Integer getContentId(); 38 public abstract void setHideLeafs(String hideLeafs); 39 public abstract String getHideLeafs(); 40 public abstract String doExecute() throws Exception ; 41 public abstract String getTree(); 42 public abstract void setTree(String tree); 43 } | Popular Tags |