net.anotheria.anosite.gen.ascustomdata.service.CustomBoxHandlerDefCRUDServiceImpl Maven / Gradle / Ivy
/**
********************************************************************************
*** CustomBoxHandlerDefCRUDServiceImpl.java ***
*** The implementation of the CustomBoxHandlerDefCRUDServiceImpl. ***
*** 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.ascustomdata.service;
import net.anotheria.asg.service.CRUDService;
import net.anotheria.anosite.gen.ascustomdata.data.CustomBoxHandlerDef;
import net.anotheria.asg.exception.ASGRuntimeException;
public class CustomBoxHandlerDefCRUDServiceImpl implements CRUDService{
// Generated by: class net.anotheria.asg.generator.model.docs.CMSBasedServiceGenerator.generateCRUDService
IASCustomDataService service;
public CustomBoxHandlerDefCRUDServiceImpl(){
this(ASCustomDataServiceFactory.getDefaultInstance());
}
public CustomBoxHandlerDefCRUDServiceImpl(IASCustomDataService aService){
service = aService;
}
public CustomBoxHandlerDef create(CustomBoxHandlerDef customboxhandlerdef) throws ASGRuntimeException {
return service.createCustomBoxHandlerDef(customboxhandlerdef);
}
public void delete(CustomBoxHandlerDef customboxhandlerdef) throws ASGRuntimeException {
service.deleteCustomBoxHandlerDef(customboxhandlerdef);
}
public CustomBoxHandlerDef get(String id) throws ASGRuntimeException {
return service.getCustomBoxHandlerDef(id);
}
public CustomBoxHandlerDef update(CustomBoxHandlerDef customboxhandlerdef) throws ASGRuntimeException {
return service.updateCustomBoxHandlerDef(customboxhandlerdef);
}
}