Package com.atlassian.bamboo.user
Interface LoginInformationDao
-
- All Superinterfaces:
BambooObjectDao<LoginInformation>
- All Known Implementing Classes:
LoginInformationHibernateDao
public interface LoginInformationDao extends BambooObjectDao<LoginInformation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @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 Detail
-
getLoginInformationByUserName
@Nullable @Nullable LoginInformation getLoginInformationByUserName(@NotNull @NotNull String userName)
-
save
void save(@NotNull @NotNull LoginInformation loginInformation)
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
-
-