Package com.arms.api.poc.service
Class PocServiceImpl
- java.lang.Object
-
- com.arms.api.poc.service.PocServiceImpl
-
- All Implemented Interfaces:
PocService
@Service("pocService") public class PocServiceImpl extends java.lang.Object implements PocService
-
-
Constructor Summary
Constructors Constructor Description PocServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PocEntityaddPoc(PocDTO pocDTO)PocEntitygetPoc(java.lang.String id)PocVOgetPocList(PocDTO pocDTO)intremovePoc(java.lang.String id)intupdatePoc(PocDTO pocDTO)
-
-
-
Method Detail
-
addPoc
public PocEntity addPoc(PocDTO pocDTO) throws java.lang.Exception
- Specified by:
addPocin interfacePocService- Throws:
java.lang.Exception
-
getPoc
public PocEntity getPoc(java.lang.String id) throws java.lang.Exception
- Specified by:
getPocin interfacePocService- Throws:
java.lang.Exception
-
getPocList
public PocVO getPocList(PocDTO pocDTO) throws java.lang.Exception
- Specified by:
getPocListin interfacePocService- Throws:
java.lang.Exception
-
updatePoc
public int updatePoc(PocDTO pocDTO) throws java.lang.Exception
- Specified by:
updatePocin interfacePocService- Throws:
java.lang.Exception
-
removePoc
public int removePoc(java.lang.String id) throws java.lang.Exception- Specified by:
removePocin interfacePocService- Throws:
java.lang.Exception
-
-