Interface SmarteditConfigurationService
- All Known Implementing Classes:
DefaultSmarteditConfigurationService
public interface SmarteditConfigurationService
Provide methods for managing SmartEdit configuration information.
-
Method Summary
Modifier and TypeMethodDescriptioncreate(SmarteditConfigurationModel configurationModel) Create a new configuration modelvoidDeletes the configuration model represented by this unique identifierfindAll()Finds all ConfigurationData stores in the data store.Finds a configuration data bean by its unique identifierupdate(String uid, SmarteditConfigurationModel configurationModel) Updates the configuration model represented by the uid
-
Method Details
-
findAll
List<SmarteditConfigurationModel> findAll()Finds all ConfigurationData stores in the data store.- Returns:
- a list of
SmarteditConfigurationModel
-
create
Create a new configuration model- Parameters:
configurationModel- the model to be saved- Returns:
- tyhe model created
-
update
Updates the configuration model represented by the uid- Parameters:
uid- is the unique identifier of this configurationconfigurationModel- - the model to be updated- Returns:
- the configuration model updated
-
delete
Deletes the configuration model represented by this unique identifier- Parameters:
uid- the model' unique identifier
-
findByKey
Finds a configuration data bean by its unique identifier- Parameters:
uid- the configuration's unique identifier- Returns:
- the
SmarteditConfigurationModelinstance, or null if it does not exist in the data store.
-