Deprecated API

Deprecated Fields
com.iplanet.jato.view.WebActions.ACTION_PREV
          Use ACTION_PREVIOUS instead 
com.iplanet.jato.view.CommandSourceTargetPair.SQL_OBJECT_TYPE
          This name is insufficiently clear. Use SQL_WHERE_TYPE instead. 
com.iplanet.jato.view.CommandSourceTargetPair.USER_SESSION_OBJECT_TYPE
          Use HTTP_SESSION_TYPE instead 
 

Deprecated Methods
com.iplanet.jato.view.ContainerViewBase.beginChildDisplay(String)
          Since JATO/1.2, the signature of this method has changed. This version of the method is marked final to prevent earler implementations from accidentally overriding it. 
com.iplanet.jato.view.ContainerViewBase.beginDisplay()
          Since JATO/1.2, the signature of this method has changed. This version of the method is marked final to prevent earler implementations from accidentally overriding it. 
com.iplanet.jato.view.ContainerViewBase.endChildDisplay(String, String)
          Since JATO/1.2, the signature of this method has changed. This version of the method is marked final to prevent earler implementations from accidentally overriding it. 
com.iplanet.jato.view.ContainerViewBase.endDisplay()
          Since JATO/1.2, the signature of this method has changed. This version of the method is marked final to prevent earler implementations from accidentally overriding it. 
com.iplanet.jato.view.ViewBean.forward(String, ViewBean, RequestContext)
          Beginning in JATO 1.1, the view bean used by a JSP is obtained solely via the ViewBeanManager. Therefore, this method no longer works as advertsied. In fact, the specified view bean instance will only be used if it is the one declared by the JSP. In short, it is no longer possible to dynamically change the view bean used by a JSP at runtime (note that several JSPs can still declare and use the same view bean). For forwarding to a view bean using an alternate JSP, change the default display URL for a target view bean before calling its forwardTo() method. 
com.iplanet.jato.model.sql.QueryModelBase.getDelimitedTableNames()
          The name of this method is misleading since it is only used with queries that operate against a single table. Instead, use the getModifyingQueryTableName() method. 
com.iplanet.jato.model.sql.StoredProcParameterDescriptor.getFieldClass()
          Use getParameterClass() instead 
com.iplanet.jato.ViewBeanManager.getViewBeanByClassName(String)
          Use the getViewBean(String) method instead 
com.iplanet.jato.ViewBeanManager.getViewBeanByName(String)
          Use the getLocalViewBean() method instead 
com.iplanet.jato.view.ViewBean.include(String, ViewBean, RequestContext)
          Beginning in JATO 1.1, the view bean used by a JSP is obtained solely via the ViewBeanManager. Therefore, this method no longer works as advertsied. In fact, the specified view bean instance will only be used if it is the one declared by the JSP. In short, it is no longer possible to dynamically change the view bean used by a JSP at runtime (note that several JSPs can still declare and use the same view bean). For including a view bean using an alternate JSP, change the default display URL for a target view bean before calling its forwardTo() method. 
com.iplanet.jato.view.CommandFieldBase.mapSourceTargetNVPs()
          This method is no longer needed and it currently has no implementation. Developers can safely omit calls to this method. 
com.iplanet.jato.ModelManager.notifyRequestCompletionListeners()
          Code that calls this method is no longer required and should be removed 
com.iplanet.jato.ViewBeanManager.notifyRequestCompletionListeners()
          Code that calls this method is no longer required and may be removed. 
com.iplanet.jato.ApplicationServletBase.onAfterRequest(HttpServletRequest, HttpServletResponse)
          This event has been superceded by onAfterRequest(RequestContext requestContext) 
com.iplanet.jato.ApplicationServletBase.onBeforeHeader(HttpServletRequest, HttpServletResponse)
          This event has been removed. Migrate all code in this event to the onInitializeHandler() method. 
com.iplanet.jato.ApplicationServletBase.onBeforeRequest(HttpServletRequest, HttpServletResponse)
          This event has been superceded by onBeforeRequest(RequestContext requestContext) 
com.iplanet.jato.ApplicationServletBase.onBeforeSessionUpdate(HttpServletRequest, HttpServletResponse)
          This event has been removed. Migrate all code in this event to the onAfterRequest() method. 
com.iplanet.jato.ApplicationServletBase.onInitializeHandler(HttpServletRequest, HttpServletResponse, ViewBean)
          This event has been superceded by onInitializeHandler(RequestContext requestContext, RequestHandler requestHandler) 
com.iplanet.jato.ApplicationServletBase.onInitializeHandler(RequestContext, ViewBean)
          This event has been superceded by onInitializeHandler(RequestContext requestContext, RequestHandler requestHandler) 
com.iplanet.jato.ApplicationServletBase.onNewSession(HttpServletRequest, HttpServletResponse)
          This event has been superceded by onNewSession(RequestContext requestContext) 
com.iplanet.jato.view.RequestHandlingViewBase.onNoModelDataAvailable(Model, int)
          This method is no longer supported 
com.iplanet.jato.view.RequestHandlingTiledViewBase.onNoModelDataAvailable(Model, int)
          This method is no longer supported 
com.iplanet.jato.ApplicationServletBase.onSessionTimeout(HttpServletRequest, HttpServletResponse)
          This event has been superceded by onSessionTimeout(RequestContext requestContext) 
com.iplanet.jato.model.sql.QueryModelBase.setDelimitedTableNames(String)
          The name of this method is misleading since it is only used with queries that operate against a single table. Instead, use the setModifyingQueryTableName(String) method. 
com.iplanet.jato.model.sql.StoredProcParameterDescriptor.setFieldClass(Class)
          Use setParameterClass() instead 
com.iplanet.jato.view.TiledViewBase.setPrimaryModel(Model)
          Use the version of this method that takes a DatasetModel instead. The parameter must be of type DatasetModel or this method will throw a ClassCastException 
com.iplanet.jato.model.sql.QueryModelBase.shouldQuoteValue(Class)
          This method has changed name to be more descriptive of its function. Please use the shouldQuoteType() method instead.