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