Package com.soffid.iam.bpm.service.ejb
Interface BpmConfigService
-
public interface BpmConfigServiceEJB BpmConfigService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(ConfigParameterVO config)voiddelete(ConfigParameterVO config)Collection<ConfigParameterVO>findAll()Collection<ConfigParameterVO>findByAppKey(String app, String key)Collection<ConfigParameterVO>findById(long id)ConfigParameterVOfindFirstByAppKey(String app, String key)voidupdate(ConfigParameterVO config)voidupdateAll(Collection<ConfigParameterVO> config)
-
-
-
Method Detail
-
findFirstByAppKey
ConfigParameterVO findFirstByAppKey(String app, String key) throws InternalErrorException, InternalErrorException, BPMException
- Throws:
InternalErrorExceptionBPMException
-
findAll
Collection<ConfigParameterVO> findAll() throws InternalErrorException, InternalErrorException, BPMException
- Throws:
InternalErrorExceptionBPMException
-
findByAppKey
Collection<ConfigParameterVO> findByAppKey(String app, String key) throws InternalErrorException, InternalErrorException, BPMException
- Throws:
InternalErrorExceptionBPMException
-
findById
Collection<ConfigParameterVO> findById(long id) throws InternalErrorException, InternalErrorException, BPMException
- Throws:
InternalErrorExceptionBPMException
-
create
void create(ConfigParameterVO config) throws InternalErrorException, InternalErrorException, BPMException
- Throws:
InternalErrorExceptionBPMException
-
delete
void delete(ConfigParameterVO config) throws InternalErrorException, InternalErrorException, BPMException
- Throws:
InternalErrorExceptionBPMException
-
update
void update(ConfigParameterVO config) throws InternalErrorException, InternalErrorException, BPMException
- Throws:
InternalErrorExceptionBPMException
-
updateAll
void updateAll(Collection<ConfigParameterVO> config) throws InternalErrorException, InternalErrorException, BPMException
- Throws:
InternalErrorExceptionBPMException
-
-