/**
* Returns the config parameters as a hashtable (lockable)
*/
public LockableHashtable getParametersTable() {
if (parms == null) {
parms = new LockableHashtable();
WSDDParameter[] ps = getParameters();
for (int n = 0; n < ps.length; n++) {
WSDDParameter p = (WSDDParameter)ps[n];
//parms.put(p.getName(), p.getValue(), p.getLocked());
parms.put(p.getName(), "", p.getLocked());