All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.distributeme.test.moskitojourney.BServiceImpl Maven / Gradle / Ivy

package org.distributeme.test.moskitojourney;

import org.distributeme.core.ServiceLocator;

public class BServiceImpl implements BService{

	private CService cService = ServiceLocator.getRemote(CService.class);

	@Override
	public String bMethod(String param) throws BServiceException {
		try{
			return "b of ("+cService.cMethod(param)+")";
		}catch(CServiceException e){
			throw new BServiceException("CService failed:", e);
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy