I'm using VSCode on Ubuntu version 22.04.2, to implement and run some tests according to the GridDB docs available on https://docs.griddb.net/gettingstarted/java/#schema-creation, but I'm unable to run the code because of the following error:
"The import com.toshiba cannot be resolved-Java"
My Java file is:
import com.toshiba.mwcloud.gs.*;
public class GridDbTests{
public static void main(String[] args)
{
Properties props = new Properties();
props.setProperty("notificationAddress", "239.0.0.1");
props.setProperty("notificationPort", "31999");
props.setProperty("clusterName", "defaultCluster");
props.setProperty("user", "admin");
props.setProperty("password", "admin");
GridStore store = GridStoreFactory.getInstance().getGridStore(props);
}
}
And the lauch.json file is:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "GridDbTests.java",
"request": "launch",
"mainClass": "GridDbTests"
}
]
}
What i'm doing wrong?