1 26 package org.objectweb.jonas.jaxr; 27 28 import java.util.Properties ; 29 30 import org.objectweb.jonas.service.Service; 31 import org.objectweb.jonas.service.ServiceException; 32 33 34 39 public interface JAXRService extends Service { 40 41 46 void createJAXRConnection(Properties props) throws ServiceException; 47 48 54 void modifyJAXRConnection(String name, JAXRConnection jaxrc) throws ServiceException; 55 56 61 void removeJAXRConnection(String name) throws ServiceException; 62 } 63 | Popular Tags |