1 26 27 package org.objectweb.jonas.ear; 28 29 import java.util.List ; 30 import java.util.Set ; 31 32 38 39 public interface EarServiceImplMBean { 40 41 48 String deployEarMBean(String fileName) throws Exception ; 49 50 55 void unDeployEarMBean(String fileName) throws Exception ; 56 57 60 Integer getCurrentNumberOfEars(); 61 62 70 List getInstalledEars() throws Exception ; 71 72 77 Set getEarNames(); 78 79 84 boolean isEarLoaded(String fileName); 85 86 90 List getDeployedEars(); 91 92 97 List getDeployableEars() throws Exception ; 98 99 103 List getAutoloadDirectories(); 104 105 109 String getAppsDirectory(); 110 111 } | Popular Tags |