View Javadoc

1   /*
2    * Copyright 2007-2008 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 org.kuali.rice.kew.lookupable;
17  
18  import java.util.ArrayList;
19  import java.util.Collection;
20  import java.util.List;
21  import java.util.Properties;
22  
23  import org.kuali.rice.core.config.ConfigContext;
24  import org.kuali.rice.kew.edl.UserAction;
25  import org.kuali.rice.kew.edl.bo.EDocLiteAssociation;
26  import org.kuali.rice.kns.bo.BusinessObject;
27  import org.kuali.rice.kns.lookup.HtmlData;
28  import org.kuali.rice.kns.lookup.KualiLookupableHelperServiceImpl;
29  import org.kuali.rice.kns.lookup.HtmlData.AnchorHtmlData;
30  import org.kuali.rice.kns.util.UrlFactory;
31  import org.kuali.rice.kns.web.struts.form.LookupForm;
32  
33  /**
34   * This is a description of what this class does - sp20369 don't forget to fill this in.
35   *
36   * @author Kuali Rice Team (rice.collab@kuali.org)
37   *
38   */
39  
40  public class EDocLiteLookupableHelperServiceImpl  extends KualiLookupableHelperServiceImpl{ //KualiLookupableHelperServiceImpl {
41  
42      private static final long serialVersionUID = 3157354920258155881L;
43  
44  	/**
45       * @returns links to "Create Document" action for the current edoclite
46       */
47  	@Override
48  	public List<HtmlData> getCustomActionUrls(BusinessObject businessObject, List pkNames) {
49  		List<HtmlData> anchorHtmlDataList = new ArrayList<HtmlData>();
50      	anchorHtmlDataList.add(getCreateDocumentUrl((EDocLiteAssociation) businessObject));	
51      	return anchorHtmlDataList;
52  	}
53  	
54      protected HtmlData getCreateDocumentUrl(EDocLiteAssociation edlAssociation) {
55      	String href = "";
56  
57          Properties parameters = new Properties();
58          parameters.put("userAction", UserAction.ACTION_CREATE);
59          parameters.put("edlName", edlAssociation.getEdlName());
60          href = UrlFactory.parameterizeUrl(
61          		ConfigContext.getCurrentContextConfig().getKEWBaseURL()+"/EDocLite", 
62          		parameters);
63          
64          AnchorHtmlData anchorHtmlData = new AnchorHtmlData(href, null, "Create Document");
65          return anchorHtmlData;
66      }
67  
68  	/**
69  	 * Since we don't have a maintenance document for EDocLiteAssociations, we need to
70  	 * set showMaintenanceLinks to true manually.  Otherwise our "Create Document" link
71  	 * won't show up.
72  	 */
73  	@Override
74  	public Collection performLookup(LookupForm lookupForm,
75  			Collection resultTable, boolean bounded) {
76  		lookupForm.setShowMaintenanceLinks(true);
77  		return super.performLookup(lookupForm, resultTable, bounded);
78  	}
79  
80  }