
net.fortuna.ical4j.extensions.strategy.request.Approval Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j-extensions Show documentation
Show all versions of ical4j-extensions Show documentation
Support for additional non-standard iCalendar objects
The newest version!
package net.fortuna.ical4j.extensions.strategy.request;
import net.fortuna.ical4j.extensions.strategy.AbstractStrategy;
import net.fortuna.ical4j.model.component.VToDo;
/**
* Captures an approval step as part of a workflow.
*/
public class Approval extends AbstractStrategy {
@Override
public VToDo get() {
VToDo vToDo = getPrototype().isPresent() ? getPrototype().get().copy() : new VToDo();
return vToDo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy