If I create user using userUtil.createUserNoNotification, how can I add it?

Deleted user April 17, 2014

hello

I'm using 6.1.6 API

howevr I don't know how to add users using JAVA

is this right source below?

File f = new File(".txt File Path");

       BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(f)));

       String[] array = null;

       String text = null;

 

       while ((text = br.readLine()) != null)

       {       

       array= text.split("\t"); 

      User a = userUtil.createUserNoNotification(array[0], array[3], array[1], array[2]);

        }

When I use that source code , I got NullPointerException...

How to handle it?

Please give me the way

1 answer

0 votes
Boris Georgiev _Appfire_
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.
April 17, 2014

Do you execute that code from inside a plugin or you've just created a Java class and want to add users ?

If you're not inside a plugin this code will not work and you should consider creating users using the REST api through the Jira Java Rest Client

https://bitbucket.org/atlassian/jira-rest-java-client

Boris Georgiev _Appfire_
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.
April 17, 2014

Also it's generraly a good practice to also include part of the exception when you ask a question, so it's visible exaclty where the exception is thrown

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events