Hi,
I am trying to integrate a third party component with CUBA and I have the following problem. The third-party jar requires several resource files to be stored in a folder - so I have created a subfolder under VAADIN (see image below)
When I initiate the component from a screen controller in the web module, this component requires the path of the folder that has been created inside VAADIN folder. So, I would like to ask you if there is any method that returns the absolute path of the VAADIN folder.
FinancialModel fm = new FinancialModel();
fm.setResourcesPath = resourcesPath;
fm.runPredictions();
In the object of type FinancialModel, I need to setup a path for related resources - these resources are a group of XML related files that are required by the Financial Modeler component. So, I have stored all xml files in a subfolder of VAADIN and I wish to tell the system where to look for these files during the initialization of the component.