All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.jsftemplating.layout.descriptors.handler.OutputMapping 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 javax.faces.context.FacesContext;


/**
 *  

This class holds OutputMapping value meta information for individual * instances of Handler Objects. This information is necessary to provide * the location to store the output value for a specific invocation of a * handler. This is data consists of the name the Handler uses for the * output, the OutputType, and optionally the OutputType key to use when * storing/retrieving the output value.

* * @author Ken Paulsen ([email protected]) */ public class OutputMapping implements java.io.Serializable { private static final long serialVersionUID = 1L; /** *

Constructor with targetKey as null. This constructor will * throw an IllegalArgumentException if outputName or * targetOutputType is null.

* * @param outputName The name the Handler uses for output value * @param targetOutputType OutputType that will store the output value * * @see OutputTypeManager * * @throws IllegalArumentException If outputName / targetOutputType is null */ public OutputMapping(String outputName, String targetOutputType) { this(outputName, null, targetOutputType); } /** *

Constructor with all values supplied as Strings. This constructor * will throw an IllegalArgumentException if outputName or * targetOutputType is null.

* * @param outputName The name the Handler uses for output value * @param targetKey The key the OutputType will use * @param targetOutputType OutputType that will store the output value * * @see OutputTypeManager * * @throws NullPointerException If outputName / targetOutputType is null */ public OutputMapping(String outputName, String targetKey, String targetOutputType) { // Sanity checks... if ((outputName == null) || (outputName.length() == 0)) { throw new NullPointerException("'outputName' is required!"); } if (targetOutputType == null) { throw new NullPointerException("'targetOutputType' is required!"); } _outputName = outputName; _targetKey = targetKey; _targetOutputType = targetOutputType; } /** * Accessor for outputName. */ public String getOutputName() { return _outputName; } /** * Accessor for targetKey. */ public String getOutputKey() { return _targetKey; } /** * Accessor for targetOutputType. */ public OutputType getOutputType() { FacesContext ctx = FacesContext.getCurrentInstance(); return OutputTypeManager.getManager(ctx).getOutputType(ctx, _targetOutputType); } /** *

Accessor for targetOutputType as a String.

*/ public String getStringOutputType() { return _targetOutputType; } private String _outputName = null; private String _targetKey = null; private String _targetOutputType = null; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy