-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
JAVAJava client generatorJava client generatorenhancementNew feature or requestNew feature or request
Description
Current code generation will create apis that specify the content (String) of the resource instead of the path. Example with uploading a catalog becomes:
final String resourcePathName = ...
final String resourcePath = Resources.getResource(resourcePathName).getPath();
final File catalogFile = new File(resourcePath);
final String body = Files.toString(catalogFile, Charset.forName("UTF-8"));
catalogApi.uploadCatalogXml(body, requestOptions);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
JAVAJava client generatorJava client generatorenhancementNew feature or requestNew feature or request