I have created a Java SDK which is calling backend rest service. Now I would like to create a wrapper on top of it so that any other application irrespective of their programming language they using, they can call the SDK methods and pass the required parameters.
If I am going to create a jar from my Java SDK, in that case only other java application can use this jar file at their class path and call the SDK methods. But if anyone is using Python or Go or any other language, they can not use the jar file.
Anyone can please share any guidance to achieve this objective.
Thanks
I am trying to built a wrapper on the Java SDK so that it can be used by any programming language to invoke the methods inside the Java SDK