Create the Java ClassConverter
If and only if you had to use theoneOf property type on your connector’s JSON Schema you also need to implement a Java ClassConverter to be able to instantiate the correct class from the configuration.
Without this, Java doesn’t know the proper Class to instantiate and it wouldn’t work as expected.
Implementing your ClassConverter
In order to implement theClassConverter you need to create a new file within
openmetadata-service/src/main/java/org/openmetadata/service/secrets/converter
There you should create a new public class that extends ClassConverter. The easiest way to achieve this is to use another ClassConverter as a reference.
Example - MysqlConnectionClassConverter.java
Here we will see how to create a ClassConverter for the MysqlConnection, where we define theauthType using the oneOf attribute.
Before anything else you need
Before anything else you need to remember to import the needed classes.In this example we need to import the
MysqlConnection itself and both the IamAuthConfig and basicAuth. It is important to remember that this classes are generated from the JSON Schema and can be found within openmetadata-spec/target/classes/org/openmetadata/schema/services/connections.If you remember from Define the JSON Schema, the MysqlConnection uses oneOf to define the authType property:With the needed imports in
With the needed imports in place, now it is time to extend the
ClassConverter class to create the MysqlConnectionClassConverter.We are overriding the convert method and going the following:- Creating a
MysqlConnectioninstance from the json object received - Getting the
AuthTypeconfiguration and trying to use it to instantiate either abasicAuthor aIamAuthConfig. The first success will be returned. - We set the
AuthTypeto be this newly instantaited class - We return the
MysqlConnectioninstance.
Making your ClassConverter visible
Now that your ClassConverter is implemented you need to add it to theClassconverterFactory.java file, located in the same path.
Example - MysqlConnectionClassconverter
Before anything else you need
Before anything else you need to remember to import your
ClassConverterNext Step
Now that the code is ready, let’s learn how to test it!Test It
Learn how to test your new connector!