All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enofex.naikan.model.serializer.Serializer Maven / Gradle / Ivy

Go to download

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