![JAR search and dependency download from the Maven repository](/logo.png)
org.mnode.ical4j.json.schema.SchemaServiceSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ical4j-json Show documentation
Show all versions of ical4j-json Show documentation
Custom marshalling between iCal4j objects and JSON formats
The newest version!
package org.mnode.ical4j.json.schema;
import com.fasterxml.jackson.databind.JsonNode;
import net.fortuna.ical4j.model.component.VAvailability;
public class SchemaServiceSerializer extends AbstractSchemaCalendarSerializer {
public SchemaServiceSerializer(Class t) {
super(t);
}
@Override
protected JsonNode buildSchema(VAvailability component) {
AbstractSchemaBuilder builder = new SchemaServiceBuilder().component(component);
return builder.build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy