com.sun.jsftemplating.layout.descriptors.handler.HandlerContext Maven / Gradle / Ivy
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the license at
* https://jsftemplating.dev.java.net/cddl1.html or
* jsftemplating/cddl1.txt.
* See the License for the specific language governing
* permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at jsftemplating/cddl1.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* you own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
*/
package com.sun.jsftemplating.layout.descriptors.handler;
import java.util.EventObject;
import javax.faces.context.FacesContext;
import com.sun.jsftemplating.layout.descriptors.LayoutElement;
/**
*
* @author Ken Paulsen ([email protected])
*/
public interface HandlerContext {
/**
* Accessor for the FacesContext.
*
* @return FacesContext
*/
public FacesContext getFacesContext();
/**
* Accessor for the LayoutElement associated with this Handler. The
* LayoutElement associated with this Handler is the LayoutElement
* which declared the handler. This provides a way for the handler
* to obtain access to the LayoutElement which is responsible for it
* being invoked.
*/
public LayoutElement getLayoutElement();
/**
* Accessor for the EventObject associated with this Handler. This
* may be null if an EventObject was not created for this handler.
* An EventObject, if it does exist, may provide additional details
* describing the context in which this Event is invoked.
*/
public EventObject getEventObject();
/**
* This method provides access to the EventType. This is mostly
* helpful for diagnostics, but may be used in a handler to determine
* more information about the context in which the code is
* executing.
*/
public String getEventType();
/**
* Accessor for the Handler descriptor for this Handler. The Handler
* descriptor object contains specific meta information describing
* the invocation of this handler. This includes details such as
* input values, and where output values are to be set.
*/
public Handler getHandler();
/**
* Setter for the Handler descriptor for this Handler.
*
* @param handler The Handler
*/
public void setHandler(Handler handler);
/**
* Accessor for the Handler descriptor for this Handler. The
* HandlerDefinition descriptor contains meta information about the
* actual Java handler that will handle the processing. This
* includes the inputs required, outputs produces, and the types for
* both.
*/
public HandlerDefinition getHandlerDefinition();
/**
* This method returns the value for the named input. Input values
* are not stored in this Context itself, but in the Handler. If
* you are trying to set input values for a handler, you must create
* a new Handler object and set its input values.
*
* @param name The input name
*
* @return The value of the input (null if not found)
*/
public Object getInputValue(String name);
/**
* This method retrieves an Output value. Output values must not be
* stored in this Context itself (remember HandlerContext objects
* are shared). Output values are stored according to what is
* specified in the HandlerDefintion.
*
* @param name The output name
*
* @return The value of the output (null if not found)
*/
public Object getOutputValue(String name);
/**
* This method sets an Output value. Output values must not be
* stored in this Context itself (remember HandlerContext objects
* are shared). Output values are stored according to what is
* specified in the HandlerDefintion.
*/
public void setOutputValue(String name, Object value);
}