com.enofex.naikan.model.serializer.Serializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of naikan-model Show documentation
Show all versions of naikan-model Show documentation
The Naikan Model Module for Naikan the software inventory management tool for dev teams driven
by our CI/CD pipeline.
The newest version!
package com.enofex.naikan.model.serializer;
import com.enofex.naikan.model.Bom;
import com.enofex.naikan.model.BomSchema;
import java.io.File;
public interface Serializer {
BomSchema.Version getSchemaVersion();
File toFile(Bom bom, String fileName);
String toString(Bom bom);
boolean supports(String type);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy