Class MultipleValueLookupForm

All Implemented Interfaces:
Serializable, PojoForm

@Deprecated public class MultipleValueLookupForm extends LookupForm
Deprecated.
KNS Struts deprecated, use KRAD and the Spring MVC framework.
Form to handle multiple value lookups
Author:
Kuali Rice Team (rice.collab@kuali.org)
See Also:
  • Constructor Details

    • MultipleValueLookupForm

      public MultipleValueLookupForm()
      Deprecated.
  • Method Details

    • addRequiredNonEditableProperties

      public void addRequiredNonEditableProperties()
      Deprecated.
      Description copied from interface: PojoForm
      This method adds the required property names, that are not directly editable by user on the html page, to a list, regardless of the context in which they appear. Request parameter names corresponding to these properties will be populated into the form.
      Specified by:
      addRequiredNonEditableProperties in interface PojoForm
      Overrides:
      addRequiredNonEditableProperties in class LookupForm
      See Also:
    • populate

      public void populate(javax.servlet.http.HttpServletRequest request)
      Deprecated.
      Description copied from class: LookupForm
      Picks out business object name from the request to get retrieve a lookupable and set properties.
      Specified by:
      populate in interface PojoForm
      Overrides:
      populate in class LookupForm
    • getCompositeSelectedObjectIds

      public String getCompositeSelectedObjectIds()
      Deprecated.
      This method converts the composite object IDs into a String
      Returns:
    • parsePreviouslySelectedObjectIds

      protected Set<String> parsePreviouslySelectedObjectIds(javax.servlet.http.HttpServletRequest request)
      Deprecated.
    • parseSelectedObjectIdSet

      protected Set<String> parseSelectedObjectIdSet(javax.servlet.http.HttpServletRequest request)
      Deprecated.
    • parseDisplayedObjectIdSet

      protected Set<String> parseDisplayedObjectIdSet(javax.servlet.http.HttpServletRequest request)
      Deprecated.
    • parseSearchUsingOnlyPrimaryKeyValues

      protected boolean parseSearchUsingOnlyPrimaryKeyValues(javax.servlet.http.HttpServletRequest request)
      Deprecated.
      Iterates through the request params, looks for the parameter representing the method to call in the format like methodToCall.sort.1.(::;true;::).x, and returns the boolean value in the (::; and ;::) delimiters.
      Parameters:
      request -
      Returns:
      See Also:
    • parseSearchUsingOnlyPrimaryKeyValues

      protected boolean parseSearchUsingOnlyPrimaryKeyValues(String methodToCallParam)
      Deprecated.
      Parses the method to call parameter passed in as a post parameter The parameter should be something like methodToCall.sort.1.(::;true;::).x, this method will return the value between (::; and ;::) as a boolean
      Parameters:
      methodToCallParam - the method to call in a format described above
      Returns:
      the value between the delimiters, false if there are no delimiters
    • getViewedPageNumber

      public int getViewedPageNumber()
      Deprecated.
    • setViewedPageNumber

      public void setViewedPageNumber(int pageNumberBeingViewedForMultivalueLookups)
      Deprecated.
    • getLookupResultsSequenceNumber

      public String getLookupResultsSequenceNumber()
      Deprecated.
    • setLookupResultsSequenceNumber

      public void setLookupResultsSequenceNumber(String lookupResultSequenceNumber)
      Deprecated.
    • getTotalNumberOfPages

      public int getTotalNumberOfPages()
      Deprecated.
    • setTotalNumberOfPages

      public void setTotalNumberOfPages(int totalNumberOfPages)
      Deprecated.
    • getFirstRowIndex

      public int getFirstRowIndex()
      Deprecated.
    • setFirstRowIndex

      public void setFirstRowIndex(int firstRowIndex)
      Deprecated.
    • getLastRowIndex

      public int getLastRowIndex()
      Deprecated.
    • setLastRowIndex

      public void setLastRowIndex(int lastRowIndex)
      Deprecated.
    • getSwitchToPageNumber

      public int getSwitchToPageNumber()
      Deprecated.
    • setSwitchToPageNumber

      protected void setSwitchToPageNumber(int switchToPageNumber)
      Deprecated.
    • getPreviouslySelectedObjectIdSet

      public Set<String> getPreviouslySelectedObjectIdSet()
      Deprecated.
    • setPreviouslySelectedObjectIdSet

      public void setPreviouslySelectedObjectIdSet(Set<String> previouslySelectedObjectIds)
      Deprecated.
    • getSelectedObjectIdSet

      public Set<String> getSelectedObjectIdSet()
      Deprecated.
    • setSelectedObjectIdSet

      public void setSelectedObjectIdSet(Set<String> selectedObjectIdSet)
      Deprecated.
    • getDisplayedObjectIdSet

      public Set<String> getDisplayedObjectIdSet()
      Deprecated.
    • setDisplayedObjectIdSet

      public void setDisplayedObjectIdSet(Set<String> displayedObjectIdSet)
      Deprecated.
    • getCompositeObjectIdMap

      public Map<String,String> getCompositeObjectIdMap()
      Deprecated.
    • setCompositeObjectIdMap

      public void setCompositeObjectIdMap(Map<String,String> compositeObjectIdMap)
      Deprecated.
    • getColumnToSortIndex

      public int getColumnToSortIndex()
      Deprecated.
    • setColumnToSortIndex

      public void setColumnToSortIndex(int columnToSortIndex)
      Deprecated.
    • getPreviouslySortedColumnIndex

      public String getPreviouslySortedColumnIndex()
      Deprecated.
    • setPreviouslySortedColumnIndex

      public void setPreviouslySortedColumnIndex(String previouslySortedColumnIndex)
      Deprecated.
    • getLookedUpCollectionName

      public String getLookedUpCollectionName()
      Deprecated.
      gets the name of the collection being looked up by the calling page. This value will be returned unmodified to the calling page (indicated by super.getBackLocation()), which should use it to determine in which collection the selected results will be returned.
      Returns:
    • setLookedUpCollectionName

      public void setLookedUpCollectionName(String lookedUpCollectionName)
      Deprecated.
      sets the name of the collection being looked up by the calling page. This value will be returned unmodified to the calling page (indicated by super.getBackLocation()), which should use it to determine in which collection the selected results will be returned
      Parameters:
      lookedUpCollectionName -
    • getResultsActualSize

      public int getResultsActualSize()
      Deprecated.
    • setResultsActualSize

      public void setResultsActualSize(int resultsActualSize)
      Deprecated.
    • getResultsLimitedSize

      public int getResultsLimitedSize()
      Deprecated.
    • setResultsLimitedSize

      public void setResultsLimitedSize(int resultsLimitedSize)
      Deprecated.
    • jumpToFirstPage

      public void jumpToFirstPage(int listSize, int maxRowsPerPage)
      Deprecated.
    • jumpToLastPage

      public void jumpToLastPage(int listSize, int maxRowsPerPage)
      Deprecated.
    • jumpToPage

      public void jumpToPage(int pageNumber, int listSize, int maxRowsPerPage)
      Deprecated.