Skip to content

Commit ec25f16

Browse files
Merge pull request #601 from ShanChathusanda93/shared-app-property-branch
Set isFragmentApp property for when invoking shared application creation
2 parents 463d6d5 + 0b23c81 commit ec25f16

File tree

3 files changed

+13
-1
lines changed
  • components
    • org.wso2.carbon.identity.organization.management.application/src/main/java/org/wso2/carbon/identity/organization/management/application
    • org.wso2.carbon.identity.organization.management.claim.provider

3 files changed

+13
-1
lines changed

components/org.wso2.carbon.identity.organization.management.application/src/main/java/org/wso2/carbon/identity/organization/management/application/OrgApplicationManagerImpl.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2296,6 +2296,7 @@ private OAuthConsumerAppDTO createOAuthApplication(String mainAppName, String ca
22962296
consumerApp.setCallbackUrl(callbackUrl);
22972297
consumerApp.setBackChannelLogoutUrl(backChannelUrl);
22982298
consumerApp.setApplicationName(mainAppName);
2299+
consumerApp.setIsFragmentApp(true);
22992300
return getOAuthAdminService().registerAndRetrieveOAuthApplicationData(consumerApp);
23002301
}
23012302

components/org.wso2.carbon.identity.organization.management.claim.provider/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@
5858
<artifactId>testng</artifactId>
5959
<scope>test</scope>
6060
</dependency>
61+
<dependency>
62+
<groupId>org.wso2.carbon.identity.inbound.auth.oauth2</groupId>
63+
<artifactId>org.wso2.carbon.identity.oauth.rar</artifactId>
64+
<scope>test</scope>
65+
</dependency>
6166
</dependencies>
6267

6368
<build>

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,12 @@
346346
<version>${mockito-core.version}</version>
347347
<scope>test</scope>
348348
</dependency>
349+
<dependency>
350+
<groupId>org.wso2.carbon.identity.inbound.auth.oauth2</groupId>
351+
<artifactId>org.wso2.carbon.identity.oauth.rar</artifactId>
352+
<version>${identity.inbound.auth.oauth.version}</version>
353+
<scope>test</scope>
354+
</dependency>
349355
<dependency>
350356
<groupId>org.wso2.carbon.identity.framework</groupId>
351357
<artifactId>org.wso2.carbon.identity.testutil</artifactId>
@@ -603,7 +609,7 @@
603609

604610
<identity.extension.utils.version>1.0.8</identity.extension.utils.version>
605611
<identity.extension.utils.import.version.range>[1.0.8, 2.0.0)</identity.extension.utils.import.version.range>
606-
<identity.inbound.auth.oauth.version>7.0.155</identity.inbound.auth.oauth.version>
612+
<identity.inbound.auth.oauth.version>7.4.14</identity.inbound.auth.oauth.version>
607613
<identity.inbound.auth.oauth.import.version.range>[6.11.66, 8.0.0)</identity.inbound.auth.oauth.import.version.range>
608614
<identity.outbound.auth.oidc.version>5.12.15</identity.outbound.auth.oidc.version>
609615
<identity.outbound.auth.oidc.import.version.range>[5.7.2, 6.0.0)</identity.outbound.auth.oidc.import.version.range>

0 commit comments

Comments
 (0)