Package com.soffid.iam.service.ejb
Interface ConfigurationService
-
public interface ConfigurationService
EJB ConfigurationService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Configuration
create(Configuration configuracio)
void
delete(Configuration configuracio)
void
deleteBlob(String name)
Collection<Configuration>
findConfigurationByFilter(String codi, String valor, String descripcio, String codiXarxa)
Configuration
findParameterByNameAndNetworkName(String codiParametre, String codiXarxa)
String
findTenantParameter(String tenant, String parameter)
byte[]
getBlob(String name)
Collection<Configuration>
getParameters()
Configuration
update(Configuration configuracio)
void
updateBlob(String name, byte[] data)
-
-
-
Method Detail
-
getBlob
byte[] getBlob(String name) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
create
Configuration create(Configuration configuracio) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
findParameterByNameAndNetworkName
Configuration findParameterByNameAndNetworkName(String codiParametre, String codiXarxa) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
update
Configuration update(Configuration configuracio) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
findTenantParameter
String findTenantParameter(String tenant, String parameter) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
findConfigurationByFilter
Collection<Configuration> findConfigurationByFilter(String codi, String valor, String descripcio, String codiXarxa) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
getParameters
Collection<Configuration> getParameters() throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
delete
void delete(Configuration configuracio) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
deleteBlob
void deleteBlob(String name) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
updateBlob
void updateBlob(String name, byte[] data) throws InternalErrorException, InternalErrorException
- Throws:
InternalErrorException
-
-