001/*
002 * (C) Copyright 2014 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl-2.1.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Anahide Tchertchian
016 */
017package org.nuxeo.ecm.platform.contentview.jsf.facelets.plugins;
018
019import javax.faces.component.html.HtmlSelectManyCheckbox;
020import javax.faces.view.facelets.FaceletContext;
021import javax.faces.view.facelets.FaceletHandler;
022import javax.faces.view.facelets.TagConfig;
023
024import org.nuxeo.ecm.platform.forms.layout.api.Widget;
025import org.nuxeo.ecm.platform.forms.layout.api.exceptions.WidgetException;
026import org.nuxeo.ecm.platform.ui.web.renderer.NxSelectManyCheckboxListRenderer;
027
028/**
029 * @since 6.0
030 */
031public class SelectManyCheckboxDirectoryAggregateWidgetTypeHandler extends SelectDirectoryAggregateWidgetTypeHandler {
032
033    private static final long serialVersionUID = 1L;
034
035    @Override
036    public FaceletHandler getFaceletHandler(FaceletContext ctx, TagConfig tagConfig, Widget widget,
037            FaceletHandler[] subHandlers) throws WidgetException {
038        return getFaceletHandler(ctx, tagConfig, widget, subHandlers, HtmlSelectManyCheckbox.COMPONENT_TYPE,
039                NxSelectManyCheckboxListRenderer.RENDERER_TYPE);
040    }
041
042}