1 25 26 package org.objectweb.jonas.web; 27 28 import java.rmi.RemoteException ; 29 import java.util.List ; 30 import java.util.Set ; 31 32 38 public interface AbsJWebContainerServiceImplMBean { 39 40 47 void registerWarMBean(String fileName) throws RemoteException , JWebContainerServiceException; 48 49 56 void unRegisterWarMBean(String fileName) throws RemoteException , JWebContainerServiceException; 57 58 66 List getInstalledWars() throws Exception ; 67 68 71 Integer getCurrentNumberOfWars(); 72 73 78 Set getWarNames(); 79 80 85 boolean isWarLoaded(String fileName); 86 87 91 String getServerName(); 92 93 97 String getServerVersion(); 98 99 103 List getDeployedWars(); 104 105 110 List getDeployableWars() throws Exception ; 111 112 116 List getAutoloadDirectories(); 117 118 122 String getWebappsDirectory(); 123 124 } 125 | Popular Tags |