001/*
002 * (C) Copyright 2009-2013 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 *     Thomas Roger
016 *     Florent Guillaume
017 */
018package org.nuxeo.ecm.platform.picture.extension;
019
020import java.io.Serializable;
021
022import org.nuxeo.ecm.core.api.Blob;
023import org.nuxeo.ecm.core.api.DocumentModel;
024import org.nuxeo.ecm.platform.filemanager.service.extension.AbstractFileImporter;
025import org.nuxeo.ecm.platform.picture.api.ImagingDocumentConstants;
026
027public class ImagePlugin extends AbstractFileImporter {
028
029    private static final long serialVersionUID = 1L;
030
031    @Override
032    public String getDefaultDocType() {
033        return ImagingDocumentConstants.PICTURE_TYPE_NAME;
034    }
035
036    @Override
037    public boolean isOverwriteByTitle() {
038        return false; // by filename
039    }
040
041    @Override
042    public void updateDocument(DocumentModel doc, Blob content) {
043        doc.setPropertyValue("file:content", (Serializable) content);
044    }
045
046}