View Javadoc

1   /**
2    * Copyright 2005-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.sampleu.travel.web.form;
17  
18  import javax.servlet.http.HttpServletRequest;
19  
20  import org.apache.struts.action.ActionMapping;
21  import org.kuali.rice.kew.api.WorkflowDocument;
22  import org.kuali.rice.kns.web.struts.form.KualiTransactionalDocumentFormBase;
23  import org.kuali.rice.kns.web.ui.HeaderField;
24  
25  import edu.sampleu.travel.bo.TravelAccount;
26  import edu.sampleu.travel.document.TravelDocument2;
27  
28  public class TravelDocumentForm2 extends KualiTransactionalDocumentFormBase {
29  
30      @Override
31  	public void populateHeaderFields(WorkflowDocument workflowDocument) {
32  		getDocInfo().clear();
33  		getDocInfo().addAll(getStandardHeaderFields(workflowDocument));
34  		getDocInfo().add(new HeaderField("DataDictionary.AttributeReferenceDummy.attributes.initiatorNetworkId", "Yahoo!"));
35  		getDocInfo().add(new HeaderField("DataDictionary.AttributeReferenceDummy.attributes.initiatorNetworkId", "Yahoo!"));
36  	}
37  
38  	private TravelAccount travelAccount = new TravelAccount();
39  
40      public TravelDocumentForm2() {
41          super();
42          this.setDocument(new TravelDocument2());
43      }
44  
45      /*
46       * Reset method - reset attributes of form retrieved from session otherwise
47       * we will always call docHandler action
48       * @param mapping
49       * @param request
50       */
51      public void reset(ActionMapping mapping, HttpServletRequest request) {
52          this.setMethodToCall(null);
53          this.setRefreshCaller(null);
54          this.setAnchor(null);
55          this.setCurrentTabIndex(0);
56      }
57  
58      public TravelAccount getTravelAccount() {
59          return travelAccount;
60      }
61  
62      public void setTravelAccount(TravelAccount travelAccount) {
63          this.travelAccount = travelAccount;
64      }
65  
66  }