@Deprecated public interface

SessionSearchObjectManager

com.atlassian.jira.web.session.SessionSearchObjectManager<T>
Known Indirect Subclasses

This interface is deprecated.
since 7.1 Storing information on the httpsession is obsoleted. Please move this functionality to the frontend or other type of storage. This method will be removed in 8.0.

Class Overview

Provides a common access point for the setting and getting of current search related objects within the current session.

Candidates for this are objects which are related to searching. For example: SearchRequest, NextPreviousPager, PagerFilter, or the selected issue.

Summary

Public Methods
@Deprecated T getCurrentObject()
This method is deprecated. since 7.1 Storing information on the httpsession is obsoleted. Please move this functionality to the frontend or other type of storage. This method will be removed in 8.0.
@Deprecated void setCurrentObject(T object)
This method is deprecated. since 7.1 Storing information on the httpsession is obsoleted. Please move this functionality to the frontend or other type of storage. This method will be removed in 8.0.

Public Methods

@Deprecated public T getCurrentObject ()

This method is deprecated.
since 7.1 Storing information on the httpsession is obsoleted. Please move this functionality to the frontend or other type of storage. This method will be removed in 8.0.

Returns
  • the current object for the current user session-wide. Null signifies that there is no current object.

@Deprecated public void setCurrentObject (T object)

This method is deprecated.
since 7.1 Storing information on the httpsession is obsoleted. Please move this functionality to the frontend or other type of storage. This method will be removed in 8.0.

Associates the specified object to the current user's session.

Parameters
object the object