FrontendController

since v11.9

The FrontendController can be used to perform operations in the frontend of the novomind iAGENT app.

The controller is currently provided by dependency injection inside a CustomBean like this:

import com.novomind.ecom.api.iagent.frontend.operation.FrontendController;
import com.novomind.ecom.common.api.frontend.CustomBean;
import com.novomind.ecom.common.api.frontend.CustomManagedBean;

@CustomManagedBean("MyCustomBean")
public class HelloWorldBean implements CustomBean{

  @Inject
  FrontendController frontendController;

}