We are trying to get All the properties inside the Worklight server using Java code running on the server.
Worklight Version 6.2.0.1
Based on the following URL:
I'm trying to use getAllProperties() API. However, I'm not getting it inside the code:
I imported java.util.Properties;
try{
Properties p = new Properties();
p.getAllProperties(); // This doesn't exist
.
.
}
Am I doing it wrong or missing something.? How can I read all the properties inside Worklight based on IBM URL mentioned above?
