001/*
002 * (C) Copyright 2010 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.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.forms.layout.export;
018
019import java.util.HashSet;
020import java.util.Set;
021
022import javax.ws.rs.core.Application;
023
024import org.nuxeo.ecm.platform.forms.layout.api.service.LayoutStore;
025
026/**
027 * Entry point for jax-rs calls to the {@link LayoutStore} service.
028 *
029 * @author Anahide Tchertchian
030 * @since 5.4
031 */
032public class WebLayoutApplication extends Application {
033
034    @Override
035    public Set<Class<?>> getClasses() {
036        Set<Class<?>> result = new HashSet<Class<?>>();
037        result.add(RootResource.class);
038        return result;
039    }
040
041    @Override
042    public Set<Object> getSingletons() {
043        Set<Object> result = new HashSet<Object>();
044        result.add(new WidgetTypeDefinitionsJsonWriter());
045        result.add(new WidgetTypeDefinitionJsonWriter());
046        result.add(new LayoutTypeDefinitionsJsonWriter());
047        result.add(new LayoutTypeDefinitionJsonWriter());
048        return result;
049    }
050
051}