1 28 29 package org.objectweb.jonas.resource; 30 31 import java.rmi.RemoteException ; 32 33 import java.util.List ; 34 import java.util.Set ; 35 36 41 public interface ResourceServiceImplMBean { 42 43 50 String deployRarMBean(String fileName) throws RemoteException , ResourceServiceException; 51 52 53 59 void unDeployRarMBean(String fileName) throws RemoteException , ResourceServiceException; 60 61 64 Integer getCurrentNumberOfResource(); 65 66 69 Integer getCurrentNumberOfRars(); 70 71 75 List getDeployedRars() throws Exception ; 76 77 81 List getInstalledRars() throws Exception ; 82 83 88 Set getRarNames(); 89 90 95 boolean isRarLoaded(String fileName); 96 97 103 List getDeployableRars() throws Exception ; 104 105 109 List getAutoloadDirectories(); 110 111 115 String getRarsDirectory(); 116 117 } 118 | Popular Tags |