Skip to content

Commit

Permalink
Revert "Revert "Fix: Unable to Update Google Connector after Configur…
Browse files Browse the repository at this point in the history
…ing Outbound Provisioning for Google""
  • Loading branch information
bhagyasakalanka authored Dec 19, 2024
1 parent 1d488c6 commit c34506b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2184,11 +2184,13 @@ public ProvisioningConnectorConfig[] getProvisioningConnectorConfigs(Connection
String blobValue = getBlobValue(rs2.getBinaryStream("PROPERTY_BLOB_VALUE"));

String propertyType = rs2.getString("PROPERTY_TYPE");
if (propertyType != null) {
propertyType = propertyType.trim();
}
String isSecret = rs2.getString("IS_SECRET");

property.setName(name);
if (propertyType != null && IdentityApplicationConstants.ConfigElements.
PROPERTY_TYPE_BLOB.equals(propertyType.trim())) {
if (IdentityApplicationConstants.ConfigElements.PROPERTY_TYPE_BLOB.equals(propertyType)) {
property.setValue(blobValue);
} else {
property.setValue(value);
Expand Down

0 comments on commit c34506b

Please sign in to comment.