Converting existing function classes with Eclipse

How to convert existing function classes with Eclipse.

About this task

If you have an existing function that is written for IBM® Rational® Integration Tester v4, you can use Eclipse to convert the function for use with Rational Integration Tester v5.

Note: It is unlikely that functions compiled for Rational Integration Tester v4 work with Rational Integration Tester v5.

Procedure

  1. Remove the register() method as it is not required anymore.
  2. Change the visibility of the default constructor to be public. No other visibility (for example, protected) is allowed. Otherwise, an exception is generated when you are trying to execute the function.
  3. Remove the super(String, String, int, int) call in the default constructor.

    This super constructor does not exist anymore, so any calls to it produce an error. This call is replaced by the information that is contained in the extension point definition.

  4. Remove the method getSyntax(). This information is now contained in the extension point definition.
  5. Create an extension point to provide Rational Integration Tester with details about your function (see Extension points overview).

Feedback