| org.sakaiproject.metaobj.utils.mvc.intf.CustomCommandController
All known Subclasses: org.theospi.portfolio.matrix.control.SubmitCellConfirmationController, org.theospi.portfolio.presentation.control.NotifyViewersController, org.sakaiproject.metaobj.shared.control.AddXmlElementController, org.sakaiproject.metaobj.shared.control.AddStructuredArtifactDefinitionController, org.theospi.portfolio.matrix.control.AddScaffoldingController, org.theospi.portfolio.matrix.control.ListEvaluationItemController, org.theospi.portfolio.presentation.control.AddLayoutController, org.theospi.portfolio.style.tool.AddStyleController, org.theospi.portfolio.matrix.control.RemoveLevCritConfirmationController, org.theospi.portfolio.presentation.control.CommentListController, org.theospi.portfolio.matrix.control.BaseListObjectController, org.theospi.portfolio.matrix.control.FormDeleteController, org.theospi.portfolio.matrix.control.RemoveExpectationConfirmationController, org.sakaiproject.metaobj.shared.control.EditXmlElementController, org.theospi.portfolio.matrix.control.ResourceDeleteController, org.theospi.utils.mvc.impl.MultiModelViewController,
CustomCommandController | public interface CustomCommandController extends Controller(Code) | | Use this controller when you need to override the way the backing object is created.
If all you are doing is return new MyBackingObject() you won't need to implement this,
Spring will handle that for you. Do not use this method to populate helping data
into the model. This method does not get called if there is an error in validation.
If you rely on this information for putting stuff in the request, you will not have
it there in the case of validation error. If you need to put helping data in the model,
implement FormController's referenceData method.
author: John Ellis (john.ellis@rsmart.com) author: John Bush (john.bush@rsmart.com) See Also: Controller |
|
|