/* * MEDecision, Inc. Software Development Infrastructure, Version 1.0 * * Copyright (c) 2007 MEDecision, Inc. All Rights Reserved. * * This software is the confidential and proprietary information of * MEDecision, Inc. ("Confidential Information"). You shall not * disclose such Confidential Information and shall use it only in * accordance with the terms of the license agreement you entered into * with MEDecision, Inc. * * MEDecision, Inc MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE, OR NON-INFRINGEMENT. MEDecision, Inc SHALL NOT BE LIABLE FOR ANY DAMAGES * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING * THIS SOFTWARE OR ITS DERIVATIVES. * * Created on Apr 5, 2007 * */ package com.joe.utilities.core.configuration.admin; import com.joe.utilities.core.listhandler.SearchResult; import com.joe.utilities.core.listhandler.ValueListHandlerABS; /** * @author rrichard * */ public class ConfigurationListHandler extends ValueListHandlerABS<IPropertyValue,IPropertyValue> { /** * */ public ConfigurationListHandler(SearchResult<IPropertyValue> list) { super(list, 20); } /* (non-Javadoc) * @see com.med.utilities.core.listhandler.ValueListHandlerABS#returnElement(java.lang.Object) */ protected IPropertyValue returnElement(IPropertyValue element) { if (element == null) { return null; } return element; } }