-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Showing
5 changed files
with
75 additions
and
54 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
26 changes: 21 additions & 5 deletions
26
...acle.svm.core/src/com/oracle/svm/core/configure/doc-files/ProxyConfigurationFilesHelp.txt
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,10 +1,26 @@ | ||
One or several (comma-separated) paths to JSON files that specify lists of interfaces that define Java proxy classes. | ||
The structure is an array of arrays of fully qualified interface names. | ||
The JSON structure is described in the following schema: | ||
|
||
Example: | ||
https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/proxy-config-schema-v1.0.0.json | ||
|
||
An example file contents follows: | ||
|
||
[ | ||
["java.lang.AutoCloseable", "java.util.Comparator"], | ||
["java.util.Comparator"], | ||
["java.util.List"] | ||
{ | ||
"condition" : { | ||
"typeReachable" : "org.example.CallingClass" | ||
}, | ||
"interfaces" : [ | ||
"java.lang.AutoCloseable", | ||
"java.util.Comparator" | ||
] | ||
}, | ||
{ | ||
"condition" : { | ||
"typeReachable" : "org.example.CallingClass" | ||
}, | ||
"interfaces" : [ | ||
"java.util.Comparator" | ||
] | ||
} | ||
] |
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