public static IService createService(ICatalog catalog) {
IService service;
MemoryServiceExtensionImpl ext=new MemoryServiceExtensionImpl();
java.util.Map<String, Serializable> params = ext.createParams(MemoryServiceExtensionImpl.URL);
service=(MemoryServiceImpl) ext.createService(MemoryServiceExtensionImpl.URL, params);
catalog.add(service);
return service;
}
/**