1 26 27 package org.objectweb.jonas.ear; 28 29 import javax.naming.Context ; 30 31 import org.objectweb.jonas.service.Service; 32 33 39 public interface EarService extends Service { 40 41 50 String deployEar(Context ctx) throws EarServiceException; 51 52 59 void unDeployEar(Context ctx) throws EarServiceException; 60 61 69 String deployEar(String fileName) throws Exception ; 70 71 76 Boolean isEarDeployed(String fileName); 77 78 84 boolean isEarDeployedByUnpackName(String unpackName); 85 86 92 void unDeployEar(String fileName) throws Exception ; 93 94 98 String getAppsDirectory(); 99 100 } | Popular Tags |