001/*
002 * (C) Copyright 2011 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 *     ldoguin
016 */
017package org.nuxeo.ecm.platform.comment.workflow.utils;
018
019import org.nuxeo.ecm.core.api.CoreSession;
020import org.nuxeo.ecm.core.api.DocumentRef;
021import org.nuxeo.ecm.core.api.UnrestrictedSessionRunner;
022
023public final class FollowTransitionUnrestricted extends UnrestrictedSessionRunner {
024
025    public final DocumentRef docRef;
026
027    public final String transition;
028
029    public FollowTransitionUnrestricted(CoreSession session, DocumentRef docRef, String transition) {
030        super(session);
031        this.docRef = docRef;
032        this.transition = transition;
033    }
034
035    @Override
036    public void run() {
037        session.followTransition(docRef, transition);
038        session.save();
039    }
040
041}