Interface BambooTrustedApplicationDao
-
- All Superinterfaces:
BambooObjectDao<BambooTrustedApplication>
- All Known Implementing Classes:
BambooTrustedApplicationsHibernateDao
public interface BambooTrustedApplicationDao extends BambooObjectDao<BambooTrustedApplication>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BambooTrustedApplication
findByApplicationId(String applicationId)
Get theBambooTrustedApplication
with the given application id.@Nullable BambooCurrentApplication
getCurrentApplication()
Retrieves the Trusted Apps data for the current Bamboo instance.void
save(@NotNull BambooCurrentApplication currentApp)
-
Methods inherited from interface com.atlassian.bamboo.persistence3.BambooObjectDao
countAll, countWithRestriction, delete, deleteAll, findAll, findById, merge, save, saveAll
-
-
-
-
Method Detail
-
findByApplicationId
BambooTrustedApplication findByApplicationId(String applicationId)
Get theBambooTrustedApplication
with the given application id.- Parameters:
applicationId
- the application id- Returns:
- the
BambooTrustedApplication
-
save
void save(@NotNull @NotNull BambooCurrentApplication currentApp)
-
getCurrentApplication
@Nullable @Nullable BambooCurrentApplication getCurrentApplication()
Retrieves the Trusted Apps data for the current Bamboo instance.
-
-