KonaKart Community Forum

Installation / Configuration => Programming of KonaKart => Topic started by: PiotrN on February 07, 2012, 01:55:17 pm

Title: Difference between KKEngIf methods and *Mgr methods
Post by: PiotrN on February 07, 2012, 01:55:17 pm
Howdy,

I'm planning to create a completely new UI for our KonaKart eCommerce, so I'm planning to use the server API instead of client API (we'll be replacing Struts with Spring MVC).

I started to skim over the Server API and bumped into a question mark. Let's say I want to add a product to the basket. The first method I noticed is the KKEngIf#addToBasket(-) (http://www.konakart.com/javadoc/server/com/konakart/appif/KKEngIf.html#addToBasket%28java.lang.String,%20int,%20com.konakart.appif.BasketIf%29). However, I've realized that there is a number of *Mgr classes like BasketMgr (http://www.konakart.com/javadoc/server/com/konakart/bl/BasketMgr.html) which can help me, as it has also the addToBasket(-) (http://www.konakart.com/javadoc/server/com/konakart/bl/BasketMgr.html#addToBasket%28java.lang.String,%20int,%20com.konakart.appif.BasketIf%29) method.

Are the *Mgr classes just a convenience ones and their only aim is to provide developer with easier access to the underlying storage? Is one way (KKEng or *Mgr) preferred one and should be used instead of other?

Thanks in advance.

Regards,
Piotr
Title: Re: Difference between KKEngIf methods and *Mgr methods
Post by: julie on February 10, 2012, 08:35:32 pm
You should always use the KKEngIf API calls. This approach gives you the flexibility to use the POJO, SOAP, RMI, JSON or custom engine without having to change a line of code of your eCommerce application, resulting in many options at deployment time.

Title: Re: Difference between KKEngIf methods and *Mgr methods
Post by: kate on February 11, 2012, 05:32:33 am
Another reason to use the APIs is that these should remain backwards-compatible in future releases preserving your investment in the code you write against KonaKart - making it easy for you to upgrade to future versions for bug fixes and new features.   The managers used by the engines are more likely to change than the APIs.... 
Title: Re: Difference between KKEngIf methods and *Mgr methods
Post by: PiotrN on February 13, 2012, 09:24:06 am
Thanks for the answers.

So, the rationale are very convincing.

Julie, if I'll create an instance of KKEngIf and use it to create one of the manager classes, how would the data be sent to the KonaKart server? Isn't it also protocol independent?

Thanks in advance.

Regards,
Piotr