Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Change Password in Jira 5.0

ab185178
Contributor
August 16, 2012

I have one requirement that I want to change the user password on the fly on Jira 5.0. Please let me know piece of code (API) to achieve this functionality. Its very urgent for our deployment. Please help.

1 answer

1 accepted

0 votes
Answer accepted
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 16, 2012

You can use the updateUser method. validateUpdateUser will return error if you don't have permission to modify the password.

http://docs.atlassian.com/jira/latest/com/atlassian/jira/bc/user/UserService.html

ab185178
Contributor
August 22, 2012

Jobin, I have tried a lot but still not able to modify the password of an user. I tried by follwing way, please verify and let me the correct way to achive the functionality.

#1. I tried to use UserManager class to update an user (com.atlassian.crowd.embedded.api.User.updateUser()). But here User calss cant be intialized. I thought, I will create an User object with modify the password and update the user. But I failed to do this. Can you tell me how can i create an User object with modified password?

#2. I tried DefaultUserservice (com.atlassian.jira.bc.user.DefaultUserService) class to use updateUser() method, but i am not able to get this Class object and not able to send the parameter (UserService.UpdateUserValidationResult) for updateUser() method. Do you have any example piece of code to achive this functionality.

In jira 4.3 i used below piece of code to modify the password of an user.

userManager.getUser(quicklookID).setPassword(strPassword);

Please help me to modify an user password in Jira5.0.

Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 22, 2012

Either inject UserService in the constructor or use ComponentAccessor.getComponent(UserService.class)

ab185178
Contributor
August 23, 2012

Also working by below code. Thanks for your quidance.

userUtil.changePassword(userManager.getUserObject(quicklookID), strPassword);

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events