Package es.caib.bpm.servei
Interface BpmConfigService
-
- All Superinterfaces:
ApplicationBootService
public interface BpmConfigService extends ApplicationBootService
Service BpmConfigService
-
-
Field Summary
Fields Modifier and Type Field Description static String
SERVICE_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(ConfigParameterVO config)
Operation createvoid
delete(ConfigParameterVO config)
Operation deleteCollection<ConfigParameterVO>
findAll()
Operation findAllCollection<ConfigParameterVO>
findByAppKey(String app, String key)
Operation findByAppKeyCollection<ConfigParameterVO>
findById(long id)
Operation findByIdConfigParameterVO
findFirstByAppKey(String app, String key)
Operation findFirstByAppKeyvoid
update(ConfigParameterVO config)
Operation updatevoid
updateAll(Collection<ConfigParameterVO> config)
Operation updateAll-
Methods inherited from interface es.caib.seycon.ng.servei.ApplicationBootService
consoleBoot, syncServerBoot, tenantBoot
-
-
-
-
Field Detail
-
SERVICE_NAME
static final String SERVICE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
findFirstByAppKey
ConfigParameterVO findFirstByAppKey(String app, String key) throws InternalErrorException, InternalErrorException, BPMException
Operation findFirstByAppKey- Parameters:
app
-key
-- Returns:
- Throws:
InternalErrorException
BPMException
-
findAll
Collection<ConfigParameterVO> findAll() throws InternalErrorException, InternalErrorException, BPMException
Operation findAll- Returns:
- Throws:
InternalErrorException
BPMException
-
findByAppKey
Collection<ConfigParameterVO> findByAppKey(String app, String key) throws InternalErrorException, InternalErrorException, BPMException
Operation findByAppKey- Parameters:
app
-key
-- Returns:
- Throws:
InternalErrorException
BPMException
-
findById
Collection<ConfigParameterVO> findById(long id) throws InternalErrorException, InternalErrorException, BPMException
Operation findById- Parameters:
id
-- Returns:
- Throws:
InternalErrorException
BPMException
-
create
void create(ConfigParameterVO config) throws InternalErrorException, InternalErrorException, BPMException
Operation create- Parameters:
config
-- Throws:
InternalErrorException
BPMException
-
delete
void delete(ConfigParameterVO config) throws InternalErrorException, InternalErrorException, BPMException
Operation delete- Parameters:
config
-- Throws:
InternalErrorException
BPMException
-
update
void update(ConfigParameterVO config) throws InternalErrorException, InternalErrorException, BPMException
Operation update- Parameters:
config
-- Throws:
InternalErrorException
BPMException
-
updateAll
void updateAll(Collection<ConfigParameterVO> config) throws InternalErrorException, InternalErrorException, BPMException
Operation updateAll- Parameters:
config
-- Throws:
InternalErrorException
BPMException
-
-