SuccessChanges

Summary

  1. tsk 1 Adds user attributes for the account activation process (details)
Commit b203ffb6cc690886694d6754b59287e45867258c by daouterelo
tsk 1 Adds user attributes for the account activation process
Adds 3 attributes: isActivated - indicates the activation status.
registerDate - indicates the date of the account creation.
activationUUID - this is a universal unique ID that allows to identify
an user to activate his account.
The addition of this attributed forced to modify the datasets of the EJB
layer and the IsEqualToUser class. For the activation process was
necesary to add 2 more methods to the UserService: getByUUID() - allows
to find in the database the user that is trying to activate his account.
activateUser() - allows to modify the user account status to
"activated".
The file was modifiedtests/src/main/resources/datasets/teamsAfterCreate.xml (diff)
The file was modifiedtests/src/main/java/es/uvigo/esei/dgss/teamb/ligaaas/domain/entities/PlayerDataset.java (diff)
The file was modifiedtests/src/main/java/es/uvigo/esei/dgss/teamb/ligaaas/domain/entities/TeamDataset.java (diff)
The file was modifiedtests/src/main/resources/datasets/competitions-update.xml (diff)
The file was modifiedtests/src/main/resources/datasets/teamsAfterDelete.xml (diff)
The file was modifiedtests/src/main/resources/datasets/users.xml (diff)
The file was modifiedtests/src/main/java/es/uvigo/esei/dgss/teamb/ligaaas/domain/entities/UsersDataset.java (diff)
The file was modifiedtests/src/main/java/es/uvigo/esei/dgss/teamb/ligaaas/domain/entities/IsEqualToUser.java (diff)
The file was modifiedtests/src/main/resources/datasets/teams.xml (diff)
The file was modifieddomain/src/main/java/es/uvigo/esei/dgss/teamb/ligaaas/domain/entities/User.java (diff)
The file was modifieddomain/src/test/java/es/uvigo/esei/dgss/teamb/ligaaas/domain/entities/UserTest.java (diff)
The file was modifiedtests/src/main/resources/datasets/users-update.xml (diff)
The file was modifiedtests/src/main/resources/datasets/competitions.xml (diff)
The file was modifiedtests/src/main/resources/datasets/teamsAfterAddPlayer.xml (diff)
The file was modifiedservice/src/main/java/es/uvigo/esei/dgss/teamb/ligaaas/service/ejbs/UserService.java (diff)
The file was modifiedtests/src/main/resources/datasets/players-update.xml (diff)
The file was addedtests/src/main/resources/datasets/usersWithUUID.xml (diff)
The file was modifiedtests/src/main/resources/datasets/players.xml (diff)
The file was modifiedtests/src/main/java/es/uvigo/esei/dgss/teamb/ligaaas/domain/entities/CompetitionsDataset.java (diff)
The file was modifiedtests/src/main/resources/datasets/competitions-delete.xml (diff)
The file was modifiedtests/src/main/resources/datasets/competition-create.xml (diff)
The file was modifiedtests/src/main/resources/datasets/users-update-password.xml (diff)
The file was modifiedservice/src/test/java/es/uvigo/esei/dgss/teamb/ligaaas/service/ejbs/UserServiceIntegrationTest.java (diff)
The file was modifiedtests/src/main/resources/datasets/players-delete.xml (diff)
The file was modifiedtests/src/main/resources/datasets/teamsAfterUpdate.xml (diff)