net.anotheria.anosite.gen.aswebdata.service.AttributeCRUDServiceImpl Maven / Gradle / Ivy
/**
********************************************************************************
*** AttributeCRUDServiceImpl.java ***
*** The implementation of the AttributeCRUDServiceImpl. ***
*** 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.aswebdata.service;
import net.anotheria.asg.service.CRUDService;
import net.anotheria.anosite.gen.aswebdata.data.Attribute;
import net.anotheria.asg.exception.ASGRuntimeException;
public class AttributeCRUDServiceImpl implements CRUDService{
// Generated by: class net.anotheria.asg.generator.model.docs.CMSBasedServiceGenerator.generateCRUDService
IASWebDataService service;
public AttributeCRUDServiceImpl(){
this(ASWebDataServiceFactory.getDefaultInstance());
}
public AttributeCRUDServiceImpl(IASWebDataService aService){
service = aService;
}
public Attribute create(Attribute attribute) throws ASGRuntimeException {
return service.createAttribute(attribute);
}
public void delete(Attribute attribute) throws ASGRuntimeException {
service.deleteAttribute(attribute);
}
public Attribute get(String id) throws ASGRuntimeException {
return service.getAttribute(id);
}
public Attribute update(Attribute attribute) throws ASGRuntimeException {
return service.updateAttribute(attribute);
}
}