-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tmf: Add support for json-schema file to TmfConfigurationSourceType #141
Conversation
6ba8935
to
3015eeb
Compare
534d6a2
to
fc21215
Compare
fc21215
to
381d0e4
Compare
@@ -49,4 +52,16 @@ public interface ITmfConfigurationSourceType { | |||
* @return A list of query parameter descriptors to be passed | |||
*/ | |||
List<ITmfConfigParamDescriptor> getConfigParamDescriptors(); | |||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing blank line before
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
@@ -49,4 +52,16 @@ public interface ITmfConfigurationSourceType { | |||
* @return A list of query parameter descriptors to be passed | |||
*/ | |||
List<ITmfConfigParamDescriptor> getConfigParamDescriptors(); | |||
/** | |||
* A string containing a json-schema describing the query parameters |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gets a file containing...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done. I added also a link to the schema spec.
* A string containing a json-schema describing the query parameters | ||
* to be passed when creating a configuration instance of this type. | ||
* | ||
* Note: Use either {@link #getConfigParamDescriptors()} or {@link #getSchemaFile()} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For schema specification see https://json-schema.org/ [Added] support for json-schema file to TmfConfigurationSourceType Signed-off-by: Bernd Hufmann <[email protected]>
For schema specification see https://json-schema.org/
[Added] support for json-schema file to TmfConfigurationSourceType
See eclipse-cdt-cloud/trace-server-protocol#103
Signed-off-by: Bernd Hufmann [email protected]