* Add a DeployedService instance to the serviceElementMap.
*
* @param newDeployedService The service to add
*/
public void addDeployedService(DeployedService newDeployedService) {
ServiceElement sElem = newDeployedService.getServiceElement();
synchronized(serviceElementMap) {
if(serviceElementMap.containsKey(sElem)) {
List<DeployedService> list = serviceElementMap.get(sElem);
if(!list.contains(newDeployedService)) {
list.add(newDeployedService);