Coverage Report - org.kuali.rice.kns.datadictionary.LookupDefinition
 
Classes in this File Line Coverage Branch Coverage Complexity
LookupDefinition
0%
0/108
0%
0/42
1.581
 
 1  
 /*
 2  
  * Copyright 2006-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  
 
 17  
 package org.kuali.rice.kns.datadictionary;
 18  
 
 19  
 import org.apache.commons.lang.StringUtils;
 20  
 import org.kuali.rice.core.api.config.property.ConfigurationService;
 21  
 import org.kuali.rice.krad.datadictionary.DataDictionaryDefinitionBase;
 22  
 import org.kuali.rice.krad.datadictionary.HelpDefinition;
 23  
 import org.kuali.rice.krad.datadictionary.SortDefinition;
 24  
 import org.kuali.rice.krad.datadictionary.exception.DuplicateEntryException;
 25  
 import org.kuali.rice.krad.service.KRADServiceLocator;
 26  
 import org.kuali.rice.krad.util.KRADConstants;
 27  
 
 28  
 import java.util.ArrayList;
 29  
 import java.util.LinkedHashMap;
 30  
 import java.util.List;
 31  
 import java.util.Map;
 32  
 
 33  
 /**
 34  
  * Contains lookup-related information relating to the parent BusinessObject.
 35  
  * <p/>
 36  
  * The lookup element is used to specify the rules for "looking up"
 37  
  * a business object.  These specifications define the following:
 38  
  * How to specify the search criteria used to locate a set of business objects
 39  
  * How to display the search results
 40  
  * <p/>
 41  
  * DD: See LookupDefinition.java
 42  
  * <p/>
 43  
  * JSTL: The lookup element is a Map which is accessed using
 44  
  * a key of "lookup".  This map contains the following keys:
 45  
  * lookupableID (String, optional)
 46  
  * title (String)
 47  
  * menubar (String, optional)
 48  
  * defaultSort (Map, optional)
 49  
  * lookupFields (Map)
 50  
  * resultFields (Map)
 51  
  * resultSetLimit (String, optional)
 52  
  * <p/>
 53  
  * See LookupMapBuilder.java
 54  
  * <p/>
 55  
  * Note: the setters do copious amounts of validation, to facilitate generating errors during the parsing process.
 56  
  */
 57  
 @Deprecated
 58  
 public class LookupDefinition extends DataDictionaryDefinitionBase {
 59  
     private static final long serialVersionUID = 6733008572890721359L;
 60  
 
 61  
     protected String lookupableID;
 62  
     protected String title;
 63  
     protected String menubar;
 64  
     protected SortDefinition defaultSort;
 65  
 
 66  0
     protected List<FieldDefinition> lookupFields = new ArrayList<FieldDefinition>();
 67  0
     protected Map<String, FieldDefinition> lookupFieldMap = new LinkedHashMap<String, FieldDefinition>();
 68  0
     protected List<FieldDefinition> resultFields = new ArrayList<FieldDefinition>();
 69  0
     protected Map<String, FieldDefinition> resultFieldMap = new LinkedHashMap<String, FieldDefinition>();
 70  
 
 71  0
     protected Integer resultSetLimit = null;
 72  
 
 73  
     protected String extraButtonSource;
 74  
     protected String extraButtonParams;
 75  
 
 76  
     protected String searchIconOverride;
 77  
 
 78  
     protected int numOfColumns;
 79  
 
 80  
     protected HelpDefinition helpDefinition;
 81  
     protected String helpUrl;
 82  
 
 83  0
     protected boolean translateCodes = false;
 84  0
     protected boolean disableSearchButtons = false;
 85  
 
 86  0
     public LookupDefinition() {
 87  0
     }
 88  
 
 89  
     /**
 90  
      * The lookupableID element identifies the name of the Spring bean which
 91  
      * will be used to obtain the lookupable helper service for the business object.
 92  
      * For example, the Balance.xml file has a lookupableId = "glBalanceLookupable".
 93  
      * The KualiSpringBeansGL.xml file determines that the helper service will be an
 94  
      * instance of BalanceLookupableHelperServiceImpl.
 95  
      * <p/>
 96  
      * If this field is omitted, the default bean id used will be kualiLookupable which uses
 97  
      * the KualiLookupableHelperServiceImpl helper service.
 98  
      */
 99  
     public void setLookupableID(String lookupableID) {
 100  0
         if (lookupableID == null) {
 101  0
             throw new IllegalArgumentException("invalid (null) lookupableID");
 102  
         }
 103  
 
 104  0
         this.lookupableID = lookupableID;
 105  0
     }
 106  
 
 107  
     /**
 108  
      * @return custom lookupable id
 109  
      */
 110  
     public String getLookupableID() {
 111  0
         return this.lookupableID;
 112  
     }
 113  
 
 114  
     /**
 115  
      * @return title
 116  
      */
 117  
     public String getTitle() {
 118  0
         return title;
 119  
     }
 120  
 
 121  
     /**
 122  
      * Sets title to the given value.
 123  
      *
 124  
      * @param title
 125  
      * @throws IllegalArgumentException if the given title is blank
 126  
      */
 127  
     public void setTitle(String title) {
 128  0
         if (StringUtils.isBlank(title)) {
 129  0
             throw new IllegalArgumentException("invalid (blank) title");
 130  
         }
 131  0
         this.title = title;
 132  0
     }
 133  
 
 134  
     /**
 135  
      * @return true if this instance has a menubar
 136  
      */
 137  
     public boolean hasMenubar() {
 138  0
         return (menubar != null);
 139  
     }
 140  
 
 141  
     /**
 142  
      * @return menubar
 143  
      */
 144  
     public String getMenubar() {
 145  0
         return menubar;
 146  
     }
 147  
 
 148  
     /**
 149  
      * The menubar element is used to add additional html code
 150  
      * to the header line on the lookup screen.
 151  
      * <p/>
 152  
      * For example, Account.xml uses this element to
 153  
      * add the "create new global" button to the Account Lookup header.
 154  
      *
 155  
      * @throws IllegalArgumentException if the given menubar is blank
 156  
      */
 157  
     public void setMenubar(String menubar) {
 158  0
         if (StringUtils.isBlank(menubar)) {
 159  0
             throw new IllegalArgumentException("invalid (blank) menubar");
 160  
         }
 161  
         // TODO: catch exception if service locator call fails
 162  0
         ConfigurationService kualiConfigurationservice = KRADServiceLocator.getKualiConfigurationService();
 163  0
         this.menubar = menubar.replace("${kr.externalizable.images.url}",
 164  
                 kualiConfigurationservice.getPropertyValueAsString(KRADConstants.EXTERNALIZABLE_IMAGES_URL_KEY)).replace("${externalizable.images.url}",
 165  
                 kualiConfigurationservice.getPropertyValueAsString(
 166  
                         KRADConstants.APPLICATION_EXTERNALIZABLE_IMAGES_URL_KEY));
 167  0
         this.menubar = this.menubar.replace("${application.url}", kualiConfigurationservice.getPropertyValueAsString(
 168  
                 KRADConstants.APPLICATION_URL_KEY));
 169  0
     }
 170  
 
 171  
 
 172  
     /**
 173  
      * @return true if this instance has a default sort defined
 174  
      */
 175  
     public boolean hasDefaultSort() {
 176  0
         return (defaultSort != null);
 177  
     }
 178  
 
 179  
     /**
 180  
      * @return defaultSort
 181  
      */
 182  
     public SortDefinition getDefaultSort() {
 183  0
         return defaultSort;
 184  
     }
 185  
 
 186  
     /**
 187  
      * The defaultSort element specifies the sequence in which the
 188  
      * lookup search results should be displayed.  It contains an
 189  
      * ascending/descending indicator and a list of attribute names.
 190  
      * <p/>
 191  
      * DD: See SortDefinition.java
 192  
      * <p/>
 193  
      * JSTL: defaultSort is a Map with the following keys:
 194  
      * sortAscending (boolean String)
 195  
      * sortAttributes (Map)
 196  
      * <p/>
 197  
      * By the time JSTL export occurs, the optional attributeName from the defaultSort
 198  
      * tag will have been converted into the first contained sortAttribute
 199  
      * <p/>
 200  
      * See LookupMapBuilder.java
 201  
      *
 202  
      * @throws IllegalArgumentException if the given defaultSort is blank
 203  
      */
 204  
     public void setDefaultSort(SortDefinition defaultSort) {
 205  0
         if (defaultSort == null) {
 206  0
             throw new IllegalArgumentException("invalid (null) defaultSort");
 207  
         }
 208  0
         this.defaultSort = defaultSort;
 209  0
     }
 210  
 
 211  
     /**
 212  
      * @return List of attributeNames of all lookupField FieldDefinitions associated with this LookupDefinition, in the order in
 213  
      *         which they were added
 214  
      */
 215  
     public List getLookupFieldNames() {
 216  0
         List fieldNames = new ArrayList();
 217  0
         fieldNames.addAll(this.lookupFieldMap.keySet());
 218  
 
 219  0
         return fieldNames;
 220  
     }
 221  
 
 222  
     /**
 223  
      * @return Collection of all lookupField FieldDefinitions associated with this LookupDefinition, in the order in which they were
 224  
      *         added
 225  
      */
 226  
     public List<FieldDefinition> getLookupFields() {
 227  0
         return lookupFields;
 228  
     }
 229  
 
 230  
     /**
 231  
      * @param fieldName
 232  
      * @return FieldDefinition associated with the named lookup field, or null if there is none
 233  
      */
 234  
     public FieldDefinition getLookupField(String attributeName) {
 235  0
         return lookupFieldMap.get(attributeName);
 236  
     }
 237  
 
 238  
     /**
 239  
      * @return List of attributeNames of all resultField FieldDefinitions associated with this LookupDefinition, in the order in
 240  
      *         which they were added
 241  
      */
 242  
     public List<String> getResultFieldNames() {
 243  0
         List<String> fieldNames = new ArrayList<String>();
 244  0
         fieldNames.addAll(resultFieldMap.keySet());
 245  
 
 246  0
         return fieldNames;
 247  
     }
 248  
 
 249  
     /**
 250  
      * @return Collection of all resultField FieldDefinitions associated with this LookupDefinition, in the order in which they were
 251  
      *         added
 252  
      */
 253  
     public List<FieldDefinition> getResultFields() {
 254  0
         return resultFields;
 255  
     }
 256  
 
 257  
 
 258  
     /**
 259  
      * @param fieldName
 260  
      * @return FieldDefinition associated with the named result field, or null if there is none
 261  
      */
 262  
     public FieldDefinition getResultField(String attributeName) {
 263  0
         return resultFieldMap.get(attributeName);
 264  
     }
 265  
 
 266  
     /**
 267  
      * The resultSetLimit element specifies the maximum number of records that will be listed
 268  
      * as a result of the lookup search.
 269  
      */
 270  
     public void setResultSetLimit(Integer resultSetLimit) {
 271  0
         this.resultSetLimit = resultSetLimit;
 272  0
     }
 273  
 
 274  
     /**
 275  
      * @return true if this instance has a result set limit
 276  
      */
 277  
     public boolean hasResultSetLimit() {
 278  0
         return (resultSetLimit != null);
 279  
     }
 280  
 
 281  
 
 282  
     /**
 283  
      * The resultSetLimit element specifies the maximum number of records that will be listed
 284  
      * as a result of the lookup search.
 285  
      */
 286  
     public Integer getResultSetLimit() {
 287  0
         return resultSetLimit;
 288  
     }
 289  
 
 290  
     /**
 291  
      * Directly validate simple fields, call completeValidation on Definition fields.
 292  
      *
 293  
      * @see org.kuali.rice.krad.datadictionary.DataDictionaryDefinition#completeValidation(java.lang.Class, java.lang.Object)
 294  
      */
 295  
     public void completeValidation(Class rootBusinessObjectClass, Class otherBusinessObjectClass) {
 296  0
         if (hasDefaultSort()) {
 297  0
             defaultSort.completeValidation(rootBusinessObjectClass, null);
 298  
         }
 299  
 
 300  0
         for (FieldDefinition lookupField : lookupFields) {
 301  0
             lookupField.completeValidation(rootBusinessObjectClass, null);
 302  
         }
 303  
 
 304  0
         for (FieldDefinition resultField : resultFields) {
 305  0
             resultField.completeValidation(rootBusinessObjectClass, null);
 306  
         }
 307  0
     }
 308  
 
 309  
     /**
 310  
      * @return true if this instance has extraButtonSource
 311  
      */
 312  
     public boolean hasExtraButtonSource() {
 313  0
         return extraButtonSource != null;
 314  
     }
 315  
 
 316  
     /**
 317  
      * @return extraButtonSource
 318  
      */
 319  
     public String getExtraButtonSource() {
 320  0
         return extraButtonSource;
 321  
     }
 322  
 
 323  
     /**
 324  
      * The extraButton element is used to define additional buttons which will
 325  
      * appear on the lookup screen next to the Search and Clear buttons.
 326  
      * You can define the image source and additional html parameters for
 327  
      * each button.
 328  
      * <p/>
 329  
      * The extraButtonSource element defines the location of an image file
 330  
      * to use for the extra button.
 331  
      *
 332  
      * @throws IllegalArgumentException if the given source is blank
 333  
      */
 334  
     public void setExtraButtonSource(String extraButtonSource) {
 335  0
         if (StringUtils.isBlank(extraButtonSource)) {
 336  0
             throw new IllegalArgumentException("invalid (blank) button source");
 337  
         }
 338  0
         this.extraButtonSource = extraButtonSource;
 339  0
     }
 340  
 
 341  
     /**
 342  
      * @return true if this instance has extraButtonParams
 343  
      */
 344  
     public boolean hasExtraButtonParams() {
 345  0
         return extraButtonParams != null;
 346  
     }
 347  
 
 348  
     /**
 349  
      * @return extraButtonParams
 350  
      */
 351  
     public String getExtraButtonParams() {
 352  0
         return extraButtonParams;
 353  
     }
 354  
 
 355  
     /**
 356  
      * The extraButton element is used to define additional buttons which will
 357  
      * appear on the lookup screen next to the Search and Clear buttons.
 358  
      * You can define the image source and additional html parameters for
 359  
      * each button.
 360  
      * <p/>
 361  
      * The extraButtonParams contains extra HTML parameters that be associated
 362  
      * with the button.
 363  
      */
 364  
     public void setExtraButtonParams(String extraButtonParams) {
 365  0
         this.extraButtonParams = extraButtonParams;
 366  0
     }
 367  
 
 368  
 
 369  
     /**
 370  
      * @return true if this instance has an alternate icon to use for lookup icon
 371  
      */
 372  
     public boolean hasSearchIconOverride() {
 373  0
         return searchIconOverride != null;
 374  
     }
 375  
 
 376  
     /**
 377  
      * @return search icon override url
 378  
      */
 379  
     public String getSearchIconOverride() {
 380  0
         return searchIconOverride;
 381  
     }
 382  
 
 383  
     /**
 384  
      * The searchIconOverride element is used to define alternative icons
 385  
      * appear on the lookup screen next to the Search and Clear buttons.
 386  
      * You can define the image source.
 387  
      *
 388  
      * @throws IllegalArgumentException if the given source is blank
 389  
      */
 390  
     public void setSearchIconOverride(String searchIconOverride) {
 391  0
         if (StringUtils.isBlank(searchIconOverride)) {
 392  0
             throw new IllegalArgumentException("invalid (blank) search icon override");
 393  
         }
 394  0
         this.searchIconOverride = searchIconOverride;
 395  0
     }
 396  
 
 397  
 
 398  
     public String toString() {
 399  0
         return "LookupDefinition '" + getTitle() + "'";
 400  
     }
 401  
 
 402  
     /**
 403  
      * The lookupFields element defines the set of fields in which the user
 404  
      * can enter values representing search selection criteria.  A search result
 405  
      * record will be returned only if the criteria entered in all the
 406  
      * lookup fields are met.
 407  
      * <p/>
 408  
      * DD:  See LookupDefinition.java
 409  
      * <p/>
 410  
      * JSTL: lookupFields is a Map which is accessed using a key of "lookupFields".
 411  
      * This map contains the following keys:
 412  
      * attributeName of first lookup field
 413  
      * attributeName of second lookup field
 414  
      * etc.
 415  
      * The corresponding values are lookupField Export Maps.
 416  
      * See LookupMapBuilder.java.
 417  
      * <p/>
 418  
      * The lookupField element defines one lookup search
 419  
      * criterion field.
 420  
      * DD: See LookupDefinition.java.
 421  
      * <p/>
 422  
      * JSTL: lookupField is a Map which is accessed by a key
 423  
      * which is the attributeName of a lookup field.  This map contains
 424  
      * entries with the following keys:
 425  
      * "attributeName" (String)
 426  
      * "required" (boolean String)
 427  
      * <p/>
 428  
      * lookupField attribute definitions:
 429  
      * <p/>
 430  
      * required = true means that the user must enter something
 431  
      * into the search criterion lookup field
 432  
      * forceLookup = this attribute is not used
 433  
      * noLookup = true means that field should not include magnifying glass (i.e. quickfinder)
 434  
      */
 435  
     public void setLookupFields(List<FieldDefinition> lookupFields) {
 436  0
         lookupFieldMap.clear();
 437  0
         for (FieldDefinition lookupField : lookupFields) {
 438  0
             if (lookupField == null) {
 439  0
                 throw new IllegalArgumentException("invalid (null) lookupField");
 440  
             }
 441  0
             String keyName = lookupField.getAttributeName();
 442  0
             if (lookupFieldMap.containsKey(keyName)) {
 443  0
                 throw new DuplicateEntryException("duplicate lookupField entry for attribute '" + keyName + "'");
 444  
             }
 445  
 
 446  0
             lookupFieldMap.put(keyName, lookupField);
 447  0
         }
 448  0
         this.lookupFields = lookupFields;
 449  0
     }
 450  
 
 451  
     /**
 452  
      * The resultFields element specifies the list of fields that are shown as a result
 453  
      * of the lookup search.
 454  
      * <p/>
 455  
      * JSTL: resultFields is a Map which is accesseed by a key of "resultFields".
 456  
      * This map contains entries with the following keys:
 457  
      * attributeName of first result field
 458  
      * attributeName of second result field
 459  
      * etc.
 460  
      * The corresponding values are ExportMap's
 461  
      * <p/>
 462  
      * The ExportMaps are accessed using a key of attributeName.
 463  
      * Each ExportMap contains a single entry as follows:
 464  
      * "attributeName"
 465  
      * The corresponding value is the attributeName of the field.
 466  
      * <p/>
 467  
      * See LookupMapBuilder.java.
 468  
      */
 469  
     public void setResultFields(List<FieldDefinition> resultFields) {
 470  0
         resultFieldMap.clear();
 471  0
         for (FieldDefinition resultField : resultFields) {
 472  0
             if (resultField == null) {
 473  0
                 throw new IllegalArgumentException("invalid (null) resultField");
 474  
             }
 475  
 
 476  0
             String keyName = resultField.getAttributeName();
 477  0
             if (resultFieldMap.containsKey(keyName)) {
 478  0
                 throw new DuplicateEntryException("duplicate resultField entry for attribute '" + keyName + "'");
 479  
             }
 480  
 
 481  0
             resultFieldMap.put(keyName, resultField);
 482  0
         }
 483  0
         this.resultFields = resultFields;
 484  0
     }
 485  
 
 486  
     /**
 487  
      * @return the numOfColumns
 488  
      */
 489  
     public int getNumOfColumns() {
 490  0
         return this.numOfColumns;
 491  
     }
 492  
 
 493  
     /**
 494  
      * @param numOfColumns the numOfColumns to set
 495  
      */
 496  
     public void setNumOfColumns(int numOfColumns) {
 497  0
         this.numOfColumns = numOfColumns;
 498  0
     }
 499  
 
 500  
     /**
 501  
      * @return the helpDefinition
 502  
      */
 503  
     public HelpDefinition getHelpDefinition() {
 504  0
         return this.helpDefinition;
 505  
     }
 506  
 
 507  
     /**
 508  
      * @param helpDefinition the helpDefinition to set
 509  
      */
 510  
     public void setHelpDefinition(HelpDefinition helpDefinition) {
 511  0
         this.helpDefinition = helpDefinition;
 512  0
     }
 513  
 
 514  
     /**
 515  
      * @return the helpUrl
 516  
      */
 517  
     public String getHelpUrl() {
 518  0
         return this.helpUrl;
 519  
     }
 520  
 
 521  
     /**
 522  
      * @param helpUrl the helpUrl to set
 523  
      */
 524  
     public void setHelpUrl(String helpUrl) {
 525  0
         this.helpUrl = helpUrl;
 526  0
     }
 527  
 
 528  
     public boolean isTranslateCodes() {
 529  0
         return this.translateCodes;
 530  
     }
 531  
 
 532  
     public void setTranslateCodes(boolean translateCodes) {
 533  0
         this.translateCodes = translateCodes;
 534  0
     }
 535  
 
 536  
     public boolean isDisableSearchButtons() {
 537  0
         return this.disableSearchButtons;
 538  
     }
 539  
 
 540  
     public void setDisableSearchButtons(boolean disableSearchButtons) {
 541  0
         this.disableSearchButtons = disableSearchButtons;
 542  0
     }
 543  
 
 544  
 }