001/*
002 * (C) Copyright 2006-2008 Nuxeo SAS (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 *     arussel
016 */
017package org.nuxeo.ecm.platform.publisher.task;
018
019import org.nuxeo.ecm.core.api.CoreSession;
020import org.nuxeo.ecm.core.api.DocumentModel;
021import org.nuxeo.ecm.core.api.UnrestrictedSessionRunner;
022
023/**
024 * @author arussel
025 */
026public class PublishUnrestricted extends UnrestrictedSessionRunner {
027    private DocumentModel newProxy;
028
029    private final DocumentModel docToPublish;
030
031    private final DocumentModel sectionToPublishTo;
032
033    private final boolean overwriteProxy;
034
035    public PublishUnrestricted(CoreSession session, DocumentModel docToPublish, DocumentModel sectionToPublishTo) {
036        this(session, docToPublish, sectionToPublishTo, true);
037    }
038
039    public PublishUnrestricted(CoreSession session, DocumentModel docToPublish, DocumentModel sectionToPublishTo,
040            boolean overwriteProxy) {
041        super(session);
042        this.sectionToPublishTo = sectionToPublishTo;
043        this.docToPublish = docToPublish;
044        this.overwriteProxy = overwriteProxy;
045    }
046
047    @Override
048    public void run() {
049        newProxy = session.publishDocument(docToPublish, sectionToPublishTo, overwriteProxy);
050        session.save();
051    }
052
053    public DocumentModel getModel() {
054        return newProxy;
055    }
056
057}