congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
ViewHandler.deriveLogicalViewId
Code IndexAdd Tabnine to your IDE (free)

How to use
deriveLogicalViewId
method
in
javax.faces.application.ViewHandler

Best Java code snippets using javax.faces.application.ViewHandler.deriveLogicalViewId (Showing top 20 results out of 315)

origin: ocpsoft/rewrite

@Override
public String deriveLogicalViewId(final FacesContext context, final String rawViewId)
{
 return parent.deriveLogicalViewId(context, rawViewId);
}
origin: org.ocpsoft.rewrite/rewrite-integration-faces

@Override
public String deriveLogicalViewId(final FacesContext context, final String rawViewId)
{
 return parent.deriveLogicalViewId(context, rawViewId);
}
origin: com.ocpsoft/prettyfaces-jsf2

@Override
public String deriveLogicalViewId(final FacesContext context, final String rawViewId)
{
 return parent.deriveLogicalViewId(context, rawViewId);
}
origin: frenchc/jetm

@Override
public String deriveLogicalViewId(FacesContext context, String rawViewId) {
 return delegate.deriveLogicalViewId(context, rawViewId);
}
origin: javax.faces/javax.faces-api

/**
 *
 * <p class="changed_added_2_1">The default behavior of this method is to
 * call {@link ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)
 * @since 2.1
 */
@Override
public String deriveLogicalViewId(FacesContext context, String requestViewId) {
  return getWrapped().deriveLogicalViewId(context, requestViewId);
}
origin: org.apache.myfaces.core/myfaces-api

@Override
public String deriveLogicalViewId(FacesContext context, String rawViewId)
{
  return getWrapped().deriveLogicalViewId(context, rawViewId);
}
origin: javax/javaee-web-api

/**
 *
 * <p class="changed_added_2_1">The default behavior of this method is to
 * call {@link ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)
 * @since 2.1
 */
@Override
public String deriveLogicalViewId(FacesContext context, String requestViewId) {
  return getWrapped().deriveLogicalViewId(context, requestViewId);
}
origin: com.sun.faces/jsf-api

/**
 *
 * <p class="changed_added_2_1">The default behavior of this method is to
 * call {@link ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)
 * @since 2.1
 */
@Override
public String deriveLogicalViewId(FacesContext context, String input) {
  return getWrapped().deriveLogicalViewId(context, input);
}

origin: com.sun.faces/jsf-impl

@Override
public String deriveLogicalViewId(FacesContext context, String input) {
  return getGroovyDelegate().deriveLogicalViewId(context, input);
}
origin: jboss/jboss-javaee-specs

/**
 *
 * <p class="changed_added_2_1">The default behavior of this method is to
 * call {@link ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)
 * @since 2.1
 */
@Override
public String deriveLogicalViewId(FacesContext context, String requestViewId) {
  return getWrapped().deriveLogicalViewId(context, requestViewId);
}
origin: eclipse-ee4j/mojarra

/**
 *
 * <p class="changed_added_2_1">
 * The default behavior of this method is to call
 * {@link ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)} on the
 * wrapped {@link ViewHandler} object.
 * </p>
 *
 * @see ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)
 * @since 2.1
 */
@Override
public String deriveLogicalViewId(FacesContext context, String requestViewId) {
  return getWrapped().deriveLogicalViewId(context, requestViewId);
}
origin: org.glassfish/javax.faces

/**
 *
 * <p class="changed_added_2_1">
 * The default behavior of this method is to call
 * {@link ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)} on the
 * wrapped {@link ViewHandler} object.
 * </p>
 *
 * @see ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)
 * @since 2.1
 */
@Override
public String deriveLogicalViewId(FacesContext context, String requestViewId) {
  return getWrapped().deriveLogicalViewId(context, requestViewId);
}
origin: org.glassfish/jakarta.faces

/**
 *
 * <p class="changed_added_2_1">
 * The default behavior of this method is to call
 * {@link ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)} on the
 * wrapped {@link ViewHandler} object.
 * </p>
 *
 * @see ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)
 * @since 2.1
 */
@Override
public String deriveLogicalViewId(FacesContext context, String requestViewId) {
  return getWrapped().deriveLogicalViewId(context, requestViewId);
}
origin: eclipse-ee4j/mojarra

/**
 *
 * <p class="changed_added_2_1">
 * The default behavior of this method is to call
 * {@link ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)} on the
 * wrapped {@link ViewHandler} object.
 * </p>
 *
 * @see ViewHandler#deriveLogicalViewId(javax.faces.context.FacesContext, String)
 * @since 2.1
 */
@Override
public String deriveLogicalViewId(FacesContext context, String requestViewId) {
  return getWrapped().deriveLogicalViewId(context, requestViewId);
}
origin: eclipse-ee4j/mojarra

String logicalViewId = viewHandler.deriveLogicalViewId(facesContext, viewId);
ViewDeclarationLanguage vdl = viewHandler.getViewDeclarationLanguage(facesContext, logicalViewId);
origin: org.glassfish/jakarta.faces

String logicalViewId = viewHandler.deriveLogicalViewId(facesContext, viewId);
ViewDeclarationLanguage vdl = viewHandler.getViewDeclarationLanguage(facesContext, logicalViewId);
origin: org.glassfish/javax.faces

String logicalViewId = viewHandler.deriveLogicalViewId(facesContext, viewId);
ViewDeclarationLanguage vdl = viewHandler.getViewDeclarationLanguage(facesContext, logicalViewId);
origin: com.sun.faces/jsf-impl

String derivedViewId = viewHandler.deriveLogicalViewId(facesContext, viewId);
ViewDeclarationLanguage vdl = viewHandler.getViewDeclarationLanguage(facesContext, derivedViewId);
origin: org.apache.myfaces.core.internal/myfaces-shaded-impl

viewHandler.deriveLogicalViewId(facesContext, viewId));
origin: org.apache.myfaces.core/myfaces-impl

  String derivedViewId = viewHandler.deriveLogicalViewId(facesContext, viewId);
  ViewDeclarationLanguage vdl = viewHandler.getViewDeclarationLanguage(facesContext, 
    derivedViewId);
String logicalViewId = viewHandler.deriveLogicalViewId(facesContext, viewId);
ViewDeclarationLanguage vdl = viewHandler.getViewDeclarationLanguage(facesContext, logicalViewId);
javax.faces.applicationViewHandlerderiveLogicalViewId

Javadoc

Derive and return the viewId from the current request, or the argument input by following the algorithm defined in specification section JSF.7.6.2. Note that unlike deriveViewId(), this method does not require that a physical view be present.

This method should work correctly when the FacesServlet is invoked via either a path mapping, extension mapping or an exact match (mapping) as defined by Servlet.12.2. Note that path mapping is also commonly known as prefix mapping (e.g. "/faces/*") and extension mapping as suffix mapping (e.g. "*.xhtml"). An exact match is possible where there's a servlet mapping with an exact URL pattern such as "/foo".

The default implementation of this method simply returns requestViewId unchanged.

Popular methods of ViewHandler

  • getActionURL
    If the value returned from this method is used as the file argument to the four-argument constructor
  • createView
    Create and return a new UIViewRoot instance initialized with information from the argument FacesCont
  • getResourceURL
    If the value returned from this method is used as the file argument to the four-argument constructor
  • restoreView
    Perform whatever actions are required to restore the view associated with the specified FacesContext
  • calculateRenderKitId
    Return an appropriate renderKitId for this and subsequent requests from the current client. It is an
  • calculateLocale
    Returns an appropriate Locale to use for this and subsequent requests for the current client.
  • writeState
    Take any appropriate action to either immediately write out the current state information (by callin
  • renderView
    Perform whatever actions are required to render the response view to the response object associated
  • initView
    Initialize the view for the request processing lifecycle. This method must be called at the beginni
  • getBookmarkableURL
    Return a JSF action URL derived from the viewId argument that is suitable to be used as the target
  • getViewDeclarationLanguage
    Return the ViewDeclarationLanguage instance used for this ViewHandler instance. The default impleme
  • getRedirectURL
    Return a JSF action URL derived from the viewId argument that is suitable to be used by the Navigat
  • getViewDeclarationLanguage,
  • getRedirectURL,
  • calculateCharacterEncoding,
  • deriveViewId,
  • getProtectedViewsUnmodifiable,
  • addProtectedView,
  • getViews,
  • getWebsocketURL,
  • removeProtectedView

Popular in Java

  • Reactive rest calls using spring rest template
  • setRequestProperty (URLConnection)
  • setScale (BigDecimal)
  • getApplicationContext (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Menu (java.awt)
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now