Skip to content

Commit

Permalink
Merge pull request #80 from sajinieKavindya/main
Browse files Browse the repository at this point in the history
Refactor property names
  • Loading branch information
sajinieKavindya authored Sep 5, 2023
2 parents 146e12f + c2eaf2d commit c3df296
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/kafka_config/init.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
<parameter name="autoRegisterSchemas" description="Serializer will/will not attempt to register new schemas"/>
<parameter name="subjectNameStrategy" description="specify the strategy for determining the subject name under
which the schema is registered"/>
<parameter name="saslOauthbearerTokenEndpoint" description="The URL for the OAuth/OIDC identity provider"/>
<parameter name="saslOauthbearerTokenEndpointUrl" description="The URL for the OAuth/OIDC identity provider"/>
<parameter name="saslLoginCallbackHandlerClass" description="The fully qualified name of a SASL login callback handler
class that implements the AuthenticateCallbackHandler interface."/>
<parameter name="saslOauthbearerScopeClaimName" description="(optional) The override name of the scope claim."/>
Expand Down Expand Up @@ -229,16 +229,16 @@
<property name="kafka.useLatestVersion" expression="$func:useLatestVersion"/>
<property name="kafka.autoRegisterSchemas" expression="$func:autoRegisterSchemas"/>
<property name="kafka.subjectNameStrategy" expression="$func:subjectNameStrategy"/>
<property name="kafka.saslOauthbearerTokenEndpointUrl" expression="$func:saslOauthbearerTokenEndpoint"/>
<property name="kafka.saslOauthbearerTokenEndpointUrl" expression="$func:saslOauthbearerTokenEndpointUrl"/>
<property name="kafka.saslOauthbearerScopeClaimName" expression="$func:saslOauthbearerScopeClaimName"/>
<property name="kafka.saslLoginConnectTimeout" expression="$func:saslLoginConnectTimeout"/>
<property name="kafka.saslLoginReadTimeout" expression="$func:saslLoginReadTimeout"/>
<property name="kafka.saslLoginRetryBackoff" expression="$func:saslLoginRetryBackoff"/>
<property name="kafka.saslLoginRetryBackoffMax" expression="$func:saslLoginRetryBackoffMax"/>
<property name="kafka.saslLoginCallbackHandlerClass" expression="$func:loginCallbackHandlerClass"/>
<property name="kafka.saslLoginCallbackHandlerClass" expression="$func:saslLoginCallbackHandlerClass"/>
<property name="kafka.enableIdempotence" expression="$func:enableIdempotence"/>
<property name="kafka.messageSendMaxRetries" expression="$func:messageSendMaxRetries"/>
<property name="kafka.reconnectBackoffMax" expression="$func:reconnectBackoffTimeMax"/>
<property name="kafka.reconnectBackoffMax" expression="$func:reconnectBackoffMax"/>
<class name="org.wso2.carbon.connector.KafkaConfigConnector"/>
</sequence>
</template>
4 changes: 2 additions & 2 deletions src/main/resources/uischema/secureConnection.json
Original file line number Diff line number Diff line change
Expand Up @@ -502,8 +502,8 @@
{
"type": "attribute",
"value": {
"name": "saslOauthbearerTokenEndpoint",
"displayName": "SASL OAUTHBEARER Token Endpoint",
"name": "saslOauthbearerTokenEndpointUrl",
"displayName": "SASL OAUTHBEARER Token Endpoint URL",
"inputType": "stringOrExpression",
"defaultValue": "",
"required": "false",
Expand Down

0 comments on commit c3df296

Please sign in to comment.