-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c497656
commit ee6fa40
Showing
12 changed files
with
122 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,10 @@ | ||
package com.github.sbt.avro; | ||
|
||
import java.io.File; | ||
import java.io.IOException; | ||
|
||
public interface AvroCompiler { | ||
void compileAvroSchema( | ||
Class<?>[] records, | ||
File[] avdls, | ||
AvroFileRef[] avscs, | ||
File[] avprs, | ||
File target, | ||
String stringType, | ||
String fieldVisibility, | ||
Boolean enableDecimalLogicalType, | ||
Boolean useNamespace, | ||
Boolean optionalGetters, | ||
Boolean createSetters | ||
) throws IOException; | ||
void recompile(Class<?>[] records, File target) throws Exception; | ||
void compileIdls(File[] idls, File target) throws Exception; | ||
void compileAvscs(AvroFileRef[] avscs, File target) throws Exception; | ||
void compileAvprs(File[] avprs, File target) throws Exception; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.