jfxtras.icalendarfx.itip.Processable Maven / Gradle / Ivy
package jfxtras.icalendarfx.itip;
import java.util.List;
import jfxtras.icalendarfx.VCalendar;
/**
* Interface for a iTIP process method including the following:
*
* - PUBLISH
*
- REQUEST
*
- REPLY
*
- ADD
*
- CANCEL
*
- REFRESH
*
- COUNTER
*
- DECLINECOUNTER
*
*
* Returns a list of strings containing a log of errors, warnings or other comments regarding the
* result of the message process
*
* @author David Bal
*
*/
public interface Processable
{
List process(VCalendar mainVCalendar, VCalendar iTIPMessage);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy