When developing an Adapter for HP ALM Synchronizer, in our Adapter class we define method
public Map<String, String> getEndpointParams(EntityType entityType)
which tells the Synchronizer which are the extra parameters that our Adapter needs.
I would like to know how can I get the values the user filled. If I call the method above, will I get the map with all keys but no values? or will I get the values the user used? Or is there any other method for this?
Thanks