com.ptc.windchill.enterprise.change2.forms.processors
Class EditChangeTaskFormProcessor

java.lang.Object
  extended by com.ptc.core.components.forms.DefaultObjectFormProcessor
      extended by com.ptc.core.components.forms.EditObjectFormProcessor
          extended by com.ptc.windchill.enterprise.change2.forms.processors.EditChangeItemFormProcessor
              extended by com.ptc.windchill.enterprise.change2.forms.processors.EditChangeTaskFormProcessor
All Implemented Interfaces:
ObjectFormProcessor

public class EditChangeTaskFormProcessor
extends EditChangeItemFormProcessor

Processor class that performs database operations on Change Task objects. This class is used for saving the data in the edit Change Task wizards. This class is designed to handle existing wt.change2.WTChangeActivity2 or any sub-types.

Supported API: true

Extendable: true


Method Summary
protected  LocalizableMessage getProcessorErrorMessage()
          The purpose of this method is to handle error messaging that is unique to the change tasks.
 FormResult preProcess(NmCommandBean clientData, List<ObjectBean> objectBeanList)
          Gets and initailizes the Change Notice from the wizard form data by calling super.
protected  WTList saveChangeItem(WTList changeItems)
          The purpose of this method is to handle persistance for change tasks.
 
Methods inherited from class com.ptc.windchill.enterprise.change2.forms.processors.EditChangeItemFormProcessor
doOperation, postProcess, setResultNextAction
 
Methods inherited from class com.ptc.core.components.forms.DefaultObjectFormProcessor
continueProcessing, getDelegates, mergeIntermediateResult, postTransactionProcess
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

preProcess

public FormResult preProcess(NmCommandBean clientData,
                             List<ObjectBean> objectBeanList)
                      throws WTException
Gets and initailizes the Change Notice from the wizard form data by calling super. Then gets the change notice instace, assignee and reviewer users for each change task.

Supported API: true

Specified by:
preProcess in interface ObjectFormProcessor
Overrides:
preProcess in class EditChangeItemFormProcessor
Parameters:
clientData - The original wizard form data. This in general should not be used to get wizard form data. The wizard form data should be retrieved from each ObjectBean in the ObjectBean list that is passed in.
objectBeans - The List of object beans that have been initialized with the appropriate wizard from data for each individual ObjectBean.
Returns:
A form result that indicates if the operation was succesful or not.
Throws:
WTException - is thrown if initailizing the change object fails
See Also:
EditChangeItemFormProcessor#preProcess(NmCommandBean, List)}

getProcessorErrorMessage

protected LocalizableMessage getProcessorErrorMessage()
The purpose of this method is to handle error messaging that is unique to the change tasks.

Supported API: true

Specified by:
getProcessorErrorMessage in class EditChangeItemFormProcessor
Returns:
Generic message for form processing error

saveChangeItem

protected WTList saveChangeItem(WTList changeItems)
                         throws WTException
The purpose of this method is to handle persistance for change tasks. The list of change tasks are saved by wrapping a call to the change service saveChangeActivities method. The order of the list of change tasks needs to be maintained and return in the same order.

Supported API: true

Specified by:
saveChangeItem in class EditChangeItemFormProcessor
Parameters:
changeItems - The list of change tasks to be persisted.
Returns:
The list of change tasks that have been persisted.
Throws:
WTException - is thrown if saving the change tasks fail.
See Also:
wt.change2.ChangeService2#saveChangeActivities(WTKeyedHashMap)}