use of net.fortuna.ical4j.model.Calendar in project camel by apache.
the class ICalDataFormat method marshal.
@Override
public void marshal(Exchange exchange, Object graph, OutputStream stream) throws Exception {
Calendar calendar = exchange.getContext().getTypeConverter().convertTo(Calendar.class, graph);
outputer.output(calendar, stream);
}
Aggregations