1 29 30 package com.caucho.management.server; 31 32 import com.caucho.jmx.Description; 33 34 41 @Description("") 42 public interface HostMXBean extends DeployControllerMXBean 43 { 44 47 @Description("The configured canonical host name") 48 public String getHostName(); 49 50 53 @Description("The configured canonical URL") 54 public String getURL(); 55 56 60 63 @Description("The configured webapps for the virtual host") 64 public WebAppMXBean []getWebApps(); 65 66 70 73 @Description("The configured root directory for the virtual host") 74 public String getRootDirectory(); 75 76 79 public String getWarDirectory(); 80 81 84 public String getWarExpandDirectory(); 85 86 90 93 public void updateWebAppDeploy(String name) 94 throws Exception ; 95 96 99 public void updateEarDeploy(String name) 100 throws Exception ; 101 102 105 public void expandEarDeploy(String name); 106 107 110 public void startEarDeploy(String name); 111 } 112 | Popular Tags |