Class AbstractSearchTool.StoredResults

  • All Implemented Interfaces:
    java.io.Serializable
    Enclosing class:
    AbstractSearchTool

    public static class AbstractSearchTool.StoredResults
    extends java.lang.Object
    implements java.io.Serializable
    Simple utility class to hold a criterion and its result list.

    This class is by default stored in a user's session, so it implements Serializable, but its members are transient. So functionally, it is not serialized and the last results/criteria will not be persisted if the session is serialized.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      StoredResults​(java.lang.Object crit, java.util.List list)
      Creates a new instance.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object getCriteria()  
      java.util.List getList()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • StoredResults

        public StoredResults​(java.lang.Object crit,
                             java.util.List list)
        Creates a new instance.
        Parameters:
        crit - the criteria for these results
        list - the List of results to store
    • Method Detail

      • getCriteria

        public java.lang.Object getCriteria()
        Returns:
        the stored criteria object
      • getList

        public java.util.List getList()
        Returns:
        the stored List of results