public static Map<String, String> getPluginPropertyMap(String propertyString) throws IOException {
Map propertyMap = new HashMap();
if (propertyString != null && propertyString.trim().length() > 0) {
CSVReader reader = new CSVReader(new StringReader(propertyString));
List entries = reader.readAll();
for (int i = 0; i < entries.size(); i++) {
String[] entry = (String[]) entries.get(i);
propertyMap.put(entry[0], entry[1]);
}