in taverna-server-worker/src/main/java/org/apache/taverna/server/localworker/impl/WorkerCore.java [779:796]
public void setProperty(String propName, String value)
throws RemoteException {
switch (Property.is(propName)) {
case EMAIL:
emailAddress = value;
return;
case READY_TO_NOTIFY:
readyToSendEmail = parseBoolean(value);
return;
case STDOUT:
case STDERR:
case EXIT_CODE:
case USAGE:
throw new RemoteException("property is read only");
default:
throw new RemoteException("unknown property");
}
}