/** * Licensed to Apereo under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright ownership. Apereo * licenses this file to you 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 the * following location: * * <p>http://www.apache.org/licenses/LICENSE-2.0 * * <p>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.apereo.portal.layout.dlm; import org.w3c.dom.Element; import org.w3c.dom.NodeList; /** * This class wraps channel layout elements in cached fragment definitions to enable the layout * manager to make informed descisions on what channel parameters should be persisted. Parameter * elements residing in the user's layout do not indicate if they came from a user change or from a * fragment's defined value. This class enables the layout manager to such determinations. * * @since 2.5 */ public class FragmentChannelInfo extends FragmentNodeInfo { FragmentChannelInfo(Element channel) { super(channel); } /** * Returns the value of an parameter or null if such a parameter is not defined on the * underlying channel element. */ public String getParameterValue(String name) { NodeList parms = node.getChildNodes(); for (int i = 0; i < parms.getLength(); i++) { Element parm = (Element) parms.item(i); if (parm.getTagName().equals(Constants.ELM_PARAMETER)) { String parmName = parm.getAttribute(Constants.ATT_NAME); if (parmName.equals(name)) { return parm.getAttribute(Constants.ATT_VALUE); } } } // if we get here then neither the fragment nor the channel definition // provided this parameter return null; } }