Skip to content

Commit

Permalink
Merge pull request #16803 from Rashmini/master
Browse files Browse the repository at this point in the history
Add Recovery V2 API
  • Loading branch information
Rashmini authored Sep 27, 2023
2 parents e765894 + 8f63031 commit d780cec
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 3 deletions.
5 changes: 3 additions & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,8 @@ org.wso2.carbon.identity.api.server.notification.sender.v1-1.2.61.jar
org.wso2.carbon.identity.api.server.fetch.remote.common-1.2.61.jar bundle apache2
org.wso2.carbon.identity.api.user.functionality.common-1.3.13.jar bundle apache2
org.wso2.carbon.identity.api.user.idv.common-1.3.13.jar bundle apache2
org.wso2.carbon.identity.rest.api.user.recovery.v1-1.3.13.jar bundle apache2
org.wso2.carbon.identity.rest.api.user.recovery.v1-1.3.20.jar bundle apache2
org.wso2.carbon.identity.rest.api.user.recovery.v2-1.3.20.jar bundle apache2
org.wso2.carbon.identity.api.server.idv.provider.common-1.2.61.jar bundle apache2
org.wso2.carbon.identity.rest.api.user.authorized.apps.v2-1.3.13.jar bundle apache2
org.wso2.carbon.identity.api.server.identity.governance.common-1.2.61.jar bundle apache2
Expand Down Expand Up @@ -758,7 +759,7 @@ org.wso2.carbon.identity.rest.api.user.backupcode.v1-1.3.13.jar
org.wso2.carbon.api.server.consent.mgt-2.5.2.jar bundle apache2
org.wso2.carbon.identity.api.server.oidc.scope.management.common-1.2.61.jar bundle apache2
org.wso2.carbon.identity.api.server.script.library.common-1.2.61.jar bundle apache2
org.wso2.carbon.identity.api.user.recovery.commons-1.3.13.jar bundle apache2
org.wso2.carbon.identity.api.user.recovery.commons-1.3.20.jar bundle apache2
org.wso2.carbon.identity.api.server.branding.preference.management.v1-1.2.61.jar bundle apache2
org.wso2.carbon.identity.api.server.authenticators.v1-1.2.61.jar bundle apache2
org.wso2.carbon.identity.api.server.configs.v1-1.2.61.jar bundle apache2
Expand Down
4 changes: 4 additions & 0 deletions modules/api-resources/api-resources-full/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@
<groupId>org.wso2.carbon.identity.user.api</groupId>
<artifactId>org.wso2.carbon.identity.rest.api.user.recovery.v1</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.user.api</groupId>
<artifactId>org.wso2.carbon.identity.rest.api.user.recovery.v2</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.user.api</groupId>
<artifactId>org.wso2.carbon.identity.api.user.recovery.commons</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<import resource="classpath:META-INF/cxf/idp-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/oidc-scope-management-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/user-recovery-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/user-recovery-v2-cxf.xml"/>
<import resource="classpath:META-INF/cxf/script-libraries-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/configs-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/notification-sender-server-v1-cxf.xml"/>
Expand Down Expand Up @@ -221,6 +222,7 @@
<bean class="org.wso2.carbon.identity.rest.api.user.authorized.apps.v2.MeApi"/>
<bean class="org.wso2.carbon.identity.rest.api.user.authorized.apps.v2.UserIdApi"/>
<bean class="org.wso2.carbon.identity.rest.api.user.authorized.apps.v2.AuthorizedAppsApi"/>
<bean class="org.wso2.carbon.identity.rest.api.user.recovery.v2.RecoveryApi"/>
</jaxrs:serviceBeans>
<jaxrs:providers>
<bean class="com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider">
Expand Down
5 changes: 5 additions & 0 deletions modules/api-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,11 @@
<artifactId>org.wso2.carbon.identity.rest.api.user.recovery.v1</artifactId>
<version>${identity.user.api.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.user.api</groupId>
<artifactId>org.wso2.carbon.identity.rest.api.user.recovery.v2</artifactId>
<version>${identity.user.api.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.user.api</groupId>
<artifactId>org.wso2.carbon.identity.api.user.recovery.commons</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ org.wso2.carbon.identity.rest.api.server.email.template.v1-*.jar,\
org.wso2.carbon.identity.rest.api.user.application.v1-*.jar,\
org.wso2.carbon.identity.rest.api.user.functionality.v1-*.jar,\
org.wso2.carbon.identity.rest.api.user.recovery.v1-*.jar,\
org.wso2.carbon.identity.rest.api.user.recovery.v2-*.jar,\
org.wso2.carbon.identity.rest.api.user.totp.common-*.jar,\
org.wso2.carbon.identity.rest.api.user.totp.v1-*.jar,\
org.wso2.carbon.security.mgt.ui_*.jar,\
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2412,7 +2412,7 @@

<!-- Identity REST API feature -->
<identity.api.dispatcher.version>2.0.13</identity.api.dispatcher.version>
<identity.user.api.version>1.3.19</identity.user.api.version>
<identity.user.api.version>1.3.20</identity.user.api.version>
<identity.server.api.version>1.2.84</identity.server.api.version>

<identity.agent.sso.version>5.5.9</identity.agent.sso.version>
Expand Down

0 comments on commit d780cec

Please sign in to comment.