* @return the generic service
* @throws GfacException
*/
public final GenericService createService() throws GfacException {
log.debug("Try to get GenericService");
GenericService service = getGenericService();
log.debug("Done get, Try to init GenericService");
service.init();
log.debug("Done init GenericService");
return getGenericService();
}