Package com.atlassian.bamboo.user
Interface LoginInformationDao
- All Superinterfaces:
BambooObjectDao<LoginInformation>
- All Known Implementing Classes:
LoginInformationHibernateDao
-
Method Summary
Modifier and TypeMethodDescription@Nullable LoginInformationgetLoginInformationByUserName(@NotNull String userName) voidsave(@NotNull LoginInformation loginInformation) Saves the given entity.Methods inherited from interface com.atlassian.bamboo.persistence3.BambooObjectDao
countAll, countWithRestriction, delete, deleteAll, findAll, findAll, findById, merge, saveAll
-
Method Details
-
getLoginInformationByUserName
@Nullable @Nullable LoginInformation getLoginInformationByUserName(@NotNull @NotNull String userName) -
save
Description copied from interface:BambooObjectDaoSaves the given entity. If the entity implementation is an instance ofEntityObjectthis method will: - updateEntityObject.getLastModificationDate()- setEntityObject.getCreationDate()if the object has not been saved- Specified by:
savein interfaceBambooObjectDao<LoginInformation>- Parameters:
loginInformation- entity to be saved
-