1 28 29 package org.objectweb.jonas.container; 30 31 import java.util.List ; 32 import java.util.Set ; 33 34 39 public interface EJBServiceImplMBean { 40 41 44 public Integer getCurrentNumberOfContainer(); 45 46 49 public Integer getTotalCurrentNumberOfBeanType(); 50 51 54 public Integer getTotalCurrentNumberOfBMPType(); 55 56 59 public Integer getTotalCurrentNumberOfCMPType(); 60 61 64 public Integer getTotalCurrentNumberOfSBFType(); 65 66 69 public Integer getTotalCurrentNumberOfSBLType(); 70 71 74 public Integer getTotalCurrentNumberOfMDBType(); 75 76 80 public Set getDataSourceDependence(String dsName); 81 82 86 public Set getJmsDestinationDependence(String dsName); 87 88 92 public Set getJmsConnectionFactoryDependence(String cfName); 93 94 98 public Set getMailFactoryDependence(String mfName); 99 100 104 public void removeContainerMBean(String fileName) throws Exception ; 105 106 111 public String createContainerMBean(String file) throws Exception ; 112 113 120 public List getInstalledJars() throws Exception ; 121 122 126 public void syncAllEntities(boolean passivate); 127 128 133 public boolean isJarLoaded(String fileName); 134 135 140 public List getDeployedJars(); 141 142 148 public List getDeployableJars() throws Exception ; 149 150 154 public List getAutoloadDirectories(); 155 156 160 public String getEjbjarsDirectory(); 161 162 163 } 164 | Popular Tags |