cancel
Showing results for 
Search instead for 
Did you mean: 

Abstract Interface in XI

Former Member
0 Kudos

Hi Experts,

Is the concept of Abstract Interface same as that of Java?

I know that the abstract interface is used in BPM and it doesnt have any direction. Any special use of abstract??

Please suggest.

Regards,

Sushama

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Sushma,

When you're defining an interface in Java, it's always abstract, though you

don't need to declare them as such.

So there's no difference between

abstract interface I

{

void method();

}

....and...

interface I

{

void method();

}

I think

but abstract interfaces in XI are different for Java abstract.

Thanks,

Sateesh

former_member181985
Active Contributor
0 Kudos

Technically there is no relation between SAP XI Abstract interfaces and Java Abstract Classes.......

You can use Abstract interfaces in BPM and as well with General Business services, Systems.

However, the SAP standard says we have to use abstract interfaces only within BPM.

Regards,

Praveen Gujjeti.

Former Member
0 Kudos

Hi,

An abstract message interface has no implementation in an application system. You cannot generate a proxy for this interface type. You use abstract interfaces in business processes, for example, to receive or send messages from application systems. You can use the same abstract interface to receive or to send.

check the below documentation...

http://help.sap.com/saphelp_nw04/helpdata/en/55/c5633c3a892251e10000000a114084/frameset.htm

Regards,

Swetha.