/* * 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 com.celements.web.plugin.cmd; import java.util.Date; import java.util.List; import java.util.Map; import com.xpn.xwiki.XWikiException; import com.xpn.xwiki.api.Document; /** * @deprecated use syncustom script service direcly instead */ @Deprecated public interface ISynCustom { /** * @deprecated use syncustom script service direcly instead */ @Deprecated public void processRegistrationsWithoutCallback(List<String> recipients); /** * @deprecated use syncustom script service direcly instead */ @Deprecated public void sendCallbackNotificationMail(Map<String, String[]> data, List<String> recipients); /** * @deprecated use syncustom script service direcly instead */ @Deprecated public void paymentCallback() throws XWikiException; /** * @deprecated use syncustom script service direcly instead */ @Deprecated public float getBMI(); /** * @deprecated use syncustom script service direcly instead */ @Deprecated public long getMillisecsForEarlyBirdDate(Date date); /** * @deprecated use syncustom script service direcly instead */ @Deprecated public String getFormatedEarlyBirdDate(Date date, String format); /** * @deprecated use syncustom script service direcly instead */ @Deprecated public int countObjsWithField(String fullName, String className, String fieldName, String value, String valueEnd); /** * @deprecated use syncustom script service direcly instead */ @Deprecated public Map<String, Integer> getRegistrationStatistics(Document mappingDoc, String congressName); /** * @deprecated use syncustom script service direcly instead */ @Deprecated public Map<String, String> getExportMapping(String mappingStr, String congress); /** * @deprecated use syncustom script service direcly instead */ @Deprecated public boolean congressRegistrationPlausibility(Document document); /** * @deprecated use syncustom script service direcly instead */ @Deprecated public boolean congressRegistrationPlausibility(); }