net.anotheria.anosite.gen.asresourcedata.service.LocalizationBundleCRUDServiceImpl Maven / Gradle / Ivy
/**
********************************************************************************
*** LocalizationBundleCRUDServiceImpl.java ***
*** The implementation of the LocalizationBundleCRUDServiceImpl. ***
*** generated by AnoSiteGenerator (ASG), Version: 2.6.3 ***
*** Copyright (C) 2005 - 2010 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.asresourcedata.service;
import net.anotheria.asg.service.CRUDService;
import net.anotheria.anosite.gen.asresourcedata.data.LocalizationBundle;
import net.anotheria.asg.exception.ASGRuntimeException;
public class LocalizationBundleCRUDServiceImpl implements CRUDService{
// Generated by: class net.anotheria.asg.generator.model.docs.CMSBasedServiceGenerator.generateCRUDService
IASResourceDataService service;
public LocalizationBundleCRUDServiceImpl(){
this(ASResourceDataServiceFactory.getDefaultInstance());
}
public LocalizationBundleCRUDServiceImpl(IASResourceDataService aService){
service = aService;
}
public LocalizationBundle create(LocalizationBundle localizationbundle) throws ASGRuntimeException {
return service.createLocalizationBundle(localizationbundle);
}
public void delete(LocalizationBundle localizationbundle) throws ASGRuntimeException {
service.deleteLocalizationBundle(localizationbundle);
}
public LocalizationBundle get(String id) throws ASGRuntimeException {
return service.getLocalizationBundle(id);
}
public LocalizationBundle update(LocalizationBundle localizationbundle) throws ASGRuntimeException {
return service.updateLocalizationBundle(localizationbundle);
}
}