1 26 27 package org.objectweb.jonas.ws; 28 29 import javax.naming.Context ; 30 31 import org.objectweb.jonas.service.Service; 32 33 34 39 public interface WebServicesService extends Service { 40 41 44 String CLASSLOADER_CTX_PARAM = "classloader"; 45 46 49 String PARENT_OBJECTNAME_CTX_PARAM = "parentObjectName"; 50 51 54 String ISINEAR_CTX_PARAM = "isInEar"; 55 56 59 String WARURL_CTX_PARAM = "warURL"; 60 61 78 void deployWebServices(Context ctx) throws WSServiceException; 79 80 85 void removeCache(ClassLoader cl); 86 87 92 void completeWSDeployment(Context ctx) throws WSServiceException; 93 94 99 void undeployWebServices(Context ctx) throws WSServiceException; 100 } 101 | Popular Tags |