Skip to content

Commit

Permalink
Merge pull request #16322 from Thisara-Welmilla/idle-account-identifi…
Browse files Browse the repository at this point in the history
…cation-API-support

Provide idle account identification API support
  • Loading branch information
Thisara-Welmilla committed Aug 22, 2023
2 parents bf04aa0 + 01c41d6 commit 1996688
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/api-resources/api-resources-full/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,14 @@
<groupId>org.wso2.carbon.identity.server.api</groupId>
<artifactId>org.wso2.carbon.identity.api.server.branding.preference.management.v1</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.server.api</groupId>
<artifactId>org.wso2.carbon.identity.api.idle.account.identification.v1</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.server.api</groupId>
<artifactId>org.wso2.carbon.identity.api.idle.account.identification.common</artifactId>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.server.api</groupId>
<artifactId>org.wso2.carbon.identity.api.server.branding.preference.management.common</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<import resource="classpath:META-INF/cxf/secret-management-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/branding-preference-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/input-validation-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/idle-account-identification-cxf.xml"/>

<import resource="classpath:META-INF/cxf/identity-governance-server-v1-cxf.xml"/>
<import resource="classpath:META-INF/cxf/admin-advisory-management-server-v1-cxf.xml"/>
Expand Down Expand Up @@ -133,6 +134,14 @@
<ref bean="validationInInterceptor"/>
</jaxrs:inInterceptors>
</jaxrs:server>
<jaxrs:server id="idleAccountIdentification" address="/idle-account-identification/v1/">
<jaxrs:serviceBeans>
<bean class="org.wso2.carbon.identity.api.idle.account.identification.v1.InactiveUsersApi"/>
</jaxrs:serviceBeans>
<jaxrs:providers>
<bean class="com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider"/>
</jaxrs:providers>
</jaxrs:server>
<jaxrs:server id="users" address="/users/v1">
<jaxrs:serviceBeans>
<bean class="org.wso2.carbon.identity.rest.api.user.application.v1.MeApi"/>
Expand Down
10 changes: 10 additions & 0 deletions modules/api-resources/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,16 @@
<artifactId>org.wso2.carbon.identity.api.server.branding.preference.management.common</artifactId>
<version>${identity.server.api.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.server.api</groupId>
<artifactId>org.wso2.carbon.identity.api.idle.account.identification.v1</artifactId>
<version>${identity.server.api.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.server.api</groupId>
<artifactId>org.wso2.carbon.identity.api.idle.account.identification.common</artifactId>
<version>${identity.server.api.version}</version>
</dependency>
<dependency>
<groupId>org.wso2.carbon.identity.server.api</groupId>
<artifactId>org.wso2.carbon.identity.api.server.input.validation.common</artifactId>
Expand Down

0 comments on commit 1996688

Please sign in to comment.