cancel
Showing results for 
Search instead for 
Did you mean: 

container.getTransformationParameters() seems to be deprecated how to replace?

praveen_aby
Explorer
0 Kudos
493

container.getTransformationParameters() seems to be deprecated. IS there a way to replace it in

DynamicConfiguration conf1 = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);

View Entire Topic
smkangethe
Participant
0 Kudos

You could also just replace it with:

DynamicConfiguration conf =
(DynamicConfiguration)container.getInputParameters().getValue(StreamTransformationConstants.DYNAMIC_CONFIGURATION);