/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.extension.xar.internal.script; import javax.inject.Inject; import javax.inject.Singleton; import org.xwiki.bridge.DocumentAccessBridge; import org.xwiki.component.annotation.Component; import org.xwiki.extension.xar.job.diff.DiffXarJobStatus; import org.xwiki.script.internal.safe.ScriptSafeProvider; /** * Provide a safe {@link DiffXarJobStatus}. * * @version $Id: dd112dcd3c411de9b5de0a3e83500c7bea19c13c $ * @since 7.0RC1 */ @Component @Singleton public class DiffXarJobStatusScriptSafeProvider implements ScriptSafeProvider<DiffXarJobStatus> { /** * The provider of instances safe for public scripts. */ @Inject @SuppressWarnings("rawtypes") private ScriptSafeProvider defaultSafeProvider; private DocumentAccessBridge documentAccessBridge; @Override @SuppressWarnings("unchecked") public <S> S get(DiffXarJobStatus unsafe) { return (S) new SafeDiffXarJobStatus(unsafe, this.defaultSafeProvider, this.documentAccessBridge); } }