Interface EnvironmentCustomConfigDao
- All Known Implementing Classes:
EnvironmentCustomConfigHibernateDao
public interface EnvironmentCustomConfigDao
Dao for interacting with Environments custom configuration.
-
Method Summary
Modifier and TypeMethodDescriptionvoiddelete(@NotNull EnvironmentCustomConfig environmentCustomConfig) @NotNull List<EnvironmentCustomConfig>findAll(int firstResult, int maxResults) Get paginated list of all custom configurations.@Nullable EnvironmentCustomConfigfindById(long environmentId) Gets specific Environment custom configuration by environment ID.longgetCount()Count all custom configurations.voidsaveOrUpdate(@NotNull EnvironmentCustomConfig environmentCustomConfig)
-
Method Details
-
findById
Gets specific Environment custom configuration by environment ID.- Parameters:
environmentId- ID of the environment your looking for.- Returns:
EnvironmentCustomConfigwith given environment id or null if one with that ID could not be found.
-
saveOrUpdate
-
delete
-
findAll
Get paginated list of all custom configurations.- Since:
- 7.1
-
getCount
long getCount()Count all custom configurations.- Since:
- 7.1
-