1 Reply Latest reply on Nov 19, 2018 7:09 AM by rareddy

    set non static parameters in the non-pushdown udfs

    lalitverma131

          Hey,

       

      we are using teiid along with some encryption code and wanted to have the support of java udfs with non-static external parameter which can change for each call of the udf.

       

      for ex:

       

      public class encryption {

                string key;

                public static String encrpty(String arg){

                return arg+key

           }

      }

       

      I cannot pass the key as parameter to the function this is some kind of initial load...

       

      how can use the key with different values for the function.

       

      let me know incase more information is required for the same.