[
https://issues.apache.org/jira/browse/METRON-1146?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16155600#comment-16155600
]
ASF GitHub Bot commented on METRON-1146:
----------------------------------------
Github user ottobackwards commented on a diff in the pull request:
https://github.com/apache/metron/pull/731#discussion_r137316439
--- Diff:
metron-interface/metron-rest/src/main/java/org/apache/metron/rest/controller/ParserExtensionController.java
---
@@ -90,8 +91,8 @@
@ApiOperation(value = "Retrieves all ParserExtensionConfigs from
Zookeeper")
@ApiResponse(message = "Returns all ParserExtensionConfigs", code = 200)
@RequestMapping(method = RequestMethod.GET)
- ResponseEntity<Map<String, ParserExtensionConfig>> findAll() throws
RestException {
- return new ResponseEntity<Map<String,
ParserExtensionConfig>>(extensionService.getAllParserExtensions(),
HttpStatus.OK);
+ ResponseEntity<List<ParserExtensionConfig>> findAll() throws
RestException {
--- End diff --
I have another branch where I am doing work on extending the management ui
to manage extensions. I had a lot of trouble consuming the maps. The map is
the configurations with a field pulled out as the key, so making it a list made
it work, similar to the getAll for parser configurations, and really didn't
lose anything.
TL;DR
I am not good enough at angular to consume the maps correctly so I
refactored.
> Add ability to parse JSON string into JSONObject for stellar
> ------------------------------------------------------------
>
> Key: METRON-1146
> URL: https://issues.apache.org/jira/browse/METRON-1146
> Project: Metron
> Issue Type: Bug
> Reporter: Anand Subramanian
> Assignee: Anand Subramanian
>
> Use jackson to parse a given JSON string and return a JSONObject on the
> stellar. For example:
> {code}
> MAP_GET( 'bar', PARSE_JSON_STRING( '{ "foo" : 1, "bar" : 2}' )
> {code}
> would give the output 2
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)