-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Session managament API implementation #28
Conversation
…to feature-session-api
6f1d5bc
to
358a135
Compare
...in/java/org/wso2/carbon/identity/rest/api/user/session/v1/core/SessionManagementService.java
Show resolved
Hide resolved
|
||
} catch (SessionManagementException e) { | ||
log.error(e.getMessage()); | ||
handleSessionManagementException(e); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return exception from the handleSessionManagementException method and throw from here, then no need return null
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
|
||
schemes: | ||
- https | ||
# host: is.wso2.com |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
host: localhost:9443
basePath: /api/users/v1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
7d0944d
to
1900121
Compare
@Override | ||
public String toString() { | ||
|
||
return code + " | " + message; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return code + " | " + message; | |
return getCode() + " | " + message; |
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the usage of junit ?
1900121
to
c89922f
Compare
c89922f
to
6c814e7
Compare
…velopment iteration
Purpose
This PR will add the session management APIs
Approach
Uses the backend functionalities introduced by wso2/carbon-identity-framework#2288
Fixes wso2/product-is#5769