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 *     Vladimir Pasquier <vpasquier@nuxeo.com>
016 */
017package org.nuxeo.box.api.adapter;
018
019import org.nuxeo.box.api.comment.adapter.BoxCommentAdapter;
020import org.nuxeo.box.api.file.adapter.BoxFileAdapter;
021import org.nuxeo.box.api.folder.adapter.BoxFolderAdapter;
022import org.nuxeo.ecm.core.api.DocumentModel;
023import org.nuxeo.ecm.core.api.adapter.DocumentAdapterFactory;
024
025/**
026 * Box Adapter Factory - instantiate implementations related to document type
027 *
028 * @since 5.9.2
029 */
030public class BoxAdapterFactory implements DocumentAdapterFactory {
031
032    @Override
033    public Object getAdapter(final DocumentModel doc, final Class<?> itf) {
034        if ("File".equals(doc.getType())) {
035            return new BoxFileAdapter(doc);
036        } else if (doc.isFolder()) {
037            return new BoxFolderAdapter(doc);
038        } else if ("Comment".equals(doc.getType())) {
039            return new BoxCommentAdapter(doc);
040        } else {
041            return null;
042        }
043    }
044}