/**
* @see org.ofbiz.workflow.WfProcessMgr#setProcessMgrState(java.lang.String)
*/
public void setProcessMgrState(String newState) throws WfException, TransitionNotAllowed {
if (!newState.equals("enabled") || !newState.equals("disabled"))
throw new TransitionNotAllowed();
this.state = newState;
}