cancel
Showing results for 
Search instead for 
Did you mean: 

Java Development API's in PI 7.3 Single Stack.

Former Member
0 Kudos

Hi,

I have a requirement to create a Java Mapping .

Now my question is I only have knowledge about old Java API's.

Is it possible to Use Old API 's in PI 7.3 Single Stack ???????

From old way i mean following API .:-  Can we implement same in PI 7.3 Single Stack ??

import java.util.Map;
import com.sap.aii.mapping.api.AbstractTrace;

import com.sap.aii.mapping.api.StreamTransformation;

import com.sap.aii.mapping.api.StreamTransformationConstants;

import com.sap.aii.mapping.api.StreamTransformationException;

implements StreamTransformation {
   private Map map = null;

   private AbstractTrace trace = null;

   public void setParameter(Map arg0) {

      map = arg0;
   // Store reference to the mapping parameters
      if (map == null) {

         this.map = new HashMap();

      }

   }

   public void execute(InputStream arg0, OutputStream arg1)

         throws StreamTransformationException {

Accepted Solutions (1)

Accepted Solutions (1)

stefan_grube
Active Contributor
0 Kudos

There is no difference in the API between PI 7.1 and PI 7.3.

Your Java Mapping will run in single stack also.

Answers (1)

Answers (1)

Former Member
0 Kudos

Closing the Thread.

Result : Old API's also works in PI 7.3

Regards

Prabhat Sharma

Bhargavakrishna
Active Contributor
0 Kudos

Thanks for confirming..