FacesContext contains several unnecessary methods
-------------------------------------------------

                 Key: MYFACES-2083
                 URL: https://issues.apache.org/jira/browse/MYFACES-2083
             Project: MyFaces Core
          Issue Type: Bug
          Components: JSR-314
    Affects Versions: 2.0.0-alpha
            Reporter: Jan-Kees van Andel
         Attachments: PartialViewContext.java

Several fields and methods are currently put in FacesContext, but should 
(according to the JSF 2.0 spec) be placed inside another class: 
PartialViewContext.

They are:
    public static final String NO_PARTIAL_PHASE_CLIENT_IDS = "none";
    public static final String PARTIAL_EXECUTE_PARAM_NAME = 
"javax.faces.partial.execute";
    public static final String PARTIAL_RENDER_PARAM_NAME = 
"javax.faces.partial.render";

    public List<String> getExecutePhaseClientIds()
    public ResponseWriter getPartialResponseWriter()
    public List<String> getRenderPhaseClientIds()
    public void setExecutePhaseClientIds(List<String> executePhaseClientIds)
    public void setRenderAll(boolean renderAll)
    public void setRenderPhaseClientIds(List<String> renderPhaseClientIds)
    public boolean isAjaxRequest()
    public boolean isExecuteNone()
    public boolean isPostback()
    public boolean isRenderAll()
    public boolean isRenderNone()



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to