diff --git a/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/gen/java/org/wso2/carbon/identity/api/server/application/management/v1/RequestObjectConfiguration.java b/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/gen/java/org/wso2/carbon/identity/api/server/application/management/v1/RequestObjectConfiguration.java index 9e0627ec39..71b42e5a1a 100644 --- a/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/gen/java/org/wso2/carbon/identity/api/server/application/management/v1/RequestObjectConfiguration.java +++ b/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/gen/java/org/wso2/carbon/identity/api/server/application/management/v1/RequestObjectConfiguration.java @@ -9,7 +9,6 @@ public class RequestObjectConfiguration { private String requestObjectSigningAlg; - private Boolean requireSignedRequestObject; private RequestObjectEncryptionConfiguration encryption; @@ -31,24 +30,6 @@ public void setRequestObjectSigningAlg(String requestObjectSigningAlg) { this.requestObjectSigningAlg = requestObjectSigningAlg; } - /** - **/ - public RequestObjectConfiguration requireSignedRequestObject(Boolean requireSignedRequestObject) { - - this.requireSignedRequestObject = requireSignedRequestObject; - return this; - } - - @ApiModelProperty(example = "false", value = "") - @JsonProperty("requireSignedRequestObject") - @Valid - public Boolean getRequireSignedRequestObject() { - return requireSignedRequestObject; - } - public void setRequireSignedRequestObject(Boolean requireSignedRequestObject) { - this.requireSignedRequestObject = requireSignedRequestObject; - } - /** **/ public RequestObjectConfiguration encryption(RequestObjectEncryptionConfiguration encryption) { @@ -78,13 +59,12 @@ public boolean equals(java.lang.Object o) { } RequestObjectConfiguration requestObjectConfiguration = (RequestObjectConfiguration) o; return Objects.equals(this.requestObjectSigningAlg, requestObjectConfiguration.requestObjectSigningAlg) && - Objects.equals(this.requireSignedRequestObject, requestObjectConfiguration.requireSignedRequestObject) && Objects.equals(this.encryption, requestObjectConfiguration.encryption); } @Override public int hashCode() { - return Objects.hash(requestObjectSigningAlg, requireSignedRequestObject, encryption); + return Objects.hash(requestObjectSigningAlg, encryption); } @Override @@ -94,7 +74,6 @@ public String toString() { sb.append("class RequestObjectConfiguration {\n"); sb.append(" requestObjectSigningAlg: ").append(toIndentedString(requestObjectSigningAlg)).append("\n"); - sb.append(" requireSignedRequestObject: ").append(toIndentedString(requireSignedRequestObject)).append("\n"); sb.append(" encryption: ").append(toIndentedString(encryption)).append("\n"); sb.append("}"); return sb.toString(); diff --git a/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/java/org/wso2/carbon/identity/api/server/application/management/v1/core/functions/application/inbound/oauth2/ApiModelToOAuthConsumerApp.java b/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/java/org/wso2/carbon/identity/api/server/application/management/v1/core/functions/application/inbound/oauth2/ApiModelToOAuthConsumerApp.java index 86bb13099f..d214b50932 100644 --- a/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/java/org/wso2/carbon/identity/api/server/application/management/v1/core/functions/application/inbound/oauth2/ApiModelToOAuthConsumerApp.java +++ b/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/java/org/wso2/carbon/identity/api/server/application/management/v1/core/functions/application/inbound/oauth2/ApiModelToOAuthConsumerApp.java @@ -213,7 +213,6 @@ private void updateRequestObjectConfiguration(OAuthConsumerAppDTO consumerAppDTO consumerAppDTO.setRequestObjectEncryptionAlgorithm(requestObject.getEncryption().getAlgorithm()); consumerAppDTO.setRequestObjectEncryptionMethod(requestObject.getEncryption().getMethod()); - consumerAppDTO.setRequestObjectSignatureValidationEnabled(requestObject.getRequireSignedRequestObject()); consumerAppDTO.setRequestObjectSignatureAlgorithm(requestObject.getRequestObjectSigningAlg()); } } diff --git a/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/java/org/wso2/carbon/identity/api/server/application/management/v1/core/functions/application/inbound/oauth2/OAuthConsumerAppToApiModel.java b/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/java/org/wso2/carbon/identity/api/server/application/management/v1/core/functions/application/inbound/oauth2/OAuthConsumerAppToApiModel.java index 174a5366c5..285a2c900f 100644 --- a/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/java/org/wso2/carbon/identity/api/server/application/management/v1/core/functions/application/inbound/oauth2/OAuthConsumerAppToApiModel.java +++ b/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/java/org/wso2/carbon/identity/api/server/application/management/v1/core/functions/application/inbound/oauth2/OAuthConsumerAppToApiModel.java @@ -169,7 +169,6 @@ private RequestObjectConfiguration buildRequestObjectConfiguration(OAuthConsumer return new RequestObjectConfiguration() .requestObjectSigningAlg(oAuthConsumerAppDTO.getRequestObjectSignatureAlgorithm()) - .requireSignedRequestObject(oAuthConsumerAppDTO.isRequestObjectSignatureValidationEnabled()) .encryption(buildRequestObjectEncryptionConfiguration(oAuthConsumerAppDTO)); } diff --git a/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/resources/applications.yaml b/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/resources/applications.yaml index feb203a66a..ab71d76199 100644 --- a/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/resources/applications.yaml +++ b/components/org.wso2.carbon.identity.api.server.application.management/org.wso2.carbon.identity.api.server.application.management.v1/src/main/resources/applications.yaml @@ -3381,9 +3381,6 @@ components: RequestObjectConfiguration: type: object properties: - requireSignedRequestObject: - type: boolean - example: false requestObjectSigningAlg: type: string example: 'PS256'