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

org.springframework.webflow.execution.support.ApplicationView Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
/*
 * Copyright 2002-2006 the original author or authors.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.webflow.execution.support;

import java.util.Collections;
import java.util.Map;

import org.springframework.util.ObjectUtils;
import org.springframework.webflow.execution.ViewSelection;

/**
 * Concrete response type that requests the rendering of a local, internal
 * application view resource such as a JSP, Velocity, or FreeMarker template.
 * 

* This is typically the most common type of view selection. * * @author Keith Donald * @author Erwin Vervaet */ public final class ApplicationView extends ViewSelection { /** * The name of the view (or page or other response) to render. This name may * identify a logical view resource or may be a physical * path to an internal view template. */ private final String viewName; /** * A map of the application data to make available to the view for * rendering. */ private final Map model; /** * Creates a new application view. * @param viewName the name (or resource identifier) of the view that should * be rendered * @param model the map of application model data to make available to the * view during rendering; entries consist of model names (Strings) to model * objects (Objects), model entries may not be null, but the model Map may * be null if there is no model data */ public ApplicationView(String viewName, Map model) { if (model == null) { model = Collections.EMPTY_MAP; } this.viewName = viewName; this.model = model; } /** * Returns the name of the view to render. */ public String getViewName() { return viewName; } /** * Return the view's application model that should be made available during * the rendering process. Never returns null. The returned map is unmodifiable. */ public Map getModel() { return Collections.unmodifiableMap(model); } public boolean equals(Object o) { if (!(o instanceof ApplicationView)) { return false; } ApplicationView other = (ApplicationView)o; return ObjectUtils.nullSafeEquals(viewName, other.viewName) && model.equals(other.model); } public int hashCode() { return (viewName != null ? viewName.hashCode() : 0) + model.hashCode(); } public String toString() { return "'" + viewName + "' [" + model.keySet() + "]"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy