org.objectweb.jonas.jaxr
Interface JAXRService

All Superinterfaces:
Service
All Known Implementing Classes:
JAXRServiceImpl

Deprecated.

public interface JAXRService
extends Service

A JAXRService is responsible to bind and manage JAXR Connection bound inside Registry.

Author:
Guillaume Sauthier

Method Summary
 void createJAXRConnection(java.util.Properties props)
          Deprecated. Creates a new JAXRConnection from a Properties file.
 void modifyJAXRConnection(java.lang.String name, JAXRConnection jaxrc)
          Deprecated. Modify the named JAXRConnection by remove it from Registry and bind the new one.
 void removeJAXRConnection(java.lang.String name)
          Deprecated. Remove the names JAXRConnection from the Registry.
 
Methods inherited from interface org.objectweb.jonas.service.Service
getName, init, isStarted, setName, start, stop
 

Method Detail

createJAXRConnection

void createJAXRConnection(java.util.Properties props)
                          throws ServiceException
Deprecated. 
Creates a new JAXRConnection from a Properties file.

Parameters:
props - jaxr.properties file
Throws:
ServiceException - if creation fails

modifyJAXRConnection

void modifyJAXRConnection(java.lang.String name,
                          JAXRConnection jaxrc)
                          throws ServiceException
Deprecated. 
Modify the named JAXRConnection by remove it from Registry and bind the new one.

Parameters:
name - old JAXRConnection name
jaxrc - new JAXRConnection instance
Throws:
ServiceException - if remove/add fails

removeJAXRConnection

void removeJAXRConnection(java.lang.String name)
                          throws ServiceException
Deprecated. 
Remove the names JAXRConnection from the Registry.

Parameters:
name - JAXRConnection name to be removed
Throws:
ServiceException - if remove fails.