com.tenxerconsulting.swagger.doclet.Recorder Maven / Gradle / Ivy
The newest version!
package com.tenxerconsulting.swagger.doclet;
import java.io.File;
import java.io.IOException;
import com.tenxerconsulting.swagger.doclet.model.ApiDeclaration;
import com.tenxerconsulting.swagger.doclet.model.ResourceListing;
public interface Recorder {
void record(File file, ResourceListing listing) throws IOException;
void record(File file, ApiDeclaration declaration) throws IOException;
}