232233234235236237238239240
* @param produit * @throws RemoteException */ public void addProduct(Produit produit) throws RemoteException { UpdateProductInput parameter = new UpdateProductInput(wsLogin, produit); getProductProxy().addProduct(parameter); }
234235236237238239240241242