* @exception CloneNotSupportedException Thrown if the copy operation isn't supported
*
*/
public WorkManager clone() throws CloneNotSupportedException
{
WorkManager wm = (WorkManager)super.clone();
wm.setShortRunningThreadPool(getShortRunningThreadPool());
wm.setLongRunningThreadPool(getLongRunningThreadPool());
wm.setXATerminator(getXATerminator());
wm.setSpecCompliant(isSpecCompliant());
wm.setCallbackSecurity(getCallbackSecurity());
return wm;
}