How to get current Username login in session on jira 5.2?

SungLB July 23, 2013

Hi All,

In "jira 4.3" I get current username login in session with code jsp follow:

<%@page import="com.opensymphony.user.User" %>

<%

User _user=null;

String _fullName="";

if (session.getAttribute("seraph_defaultauthenticator_user")!=null){

_user=(User)session.getAttribute("seraph_defaultauthenticator_user");_fullName=_user.getFullName();

}

%>

package "com.opensymphony.user" in file: "jira-api-4.3.4.jar"

But the code jsp above is not working on jira 5.2.

System show error: not found package: com.opensymphony.user.User.

And I not find package "com.opensymphony.user" in file "jira-api-5.2.4.1.jar".

You can help me get current username login from code jsp and run on jira 5.2 ?

Thanks you very much !

3 answers

0 votes
SungLB July 23, 2013

Thanks Jobin Kuruvilla and Nic Brough.

I will try with guide from you.

Thanks you very much !

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 23, 2013

OpenSymphony User handling was replaced with embedded crowd from Jira 4.3

I don't know if that is exposed in the session in the same way, but if it is, it would be a bit like om.atlassian.crowd.embedded.api.User

0 votes
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.
July 23, 2013

Suggest an answer

Log in or Sign up to answer