getConfigPropertyMap() method

Return a hash map of key and value pairs of properties.

Syntax

public HashMap< String, String > getConfigPropertyMap () throws SMPException

Exceptions

Example 1

try {
   AppSettings appSettings = new AppSettings(clientConnection);
   HashMap<String, String> property = appSettings.getConfigPropertyMap();
} catch (SMPException e) {
   e.printStackTrace();
}