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