arina-ielchiieva commented on a change in pull request #1345: DRILL-6494: Drill Plugins Handler URL: https://github.com/apache/drill/pull/1345#discussion_r199322019
########## File path: exec/java-exec/src/main/java/org/apache/drill/exec/store/NamedStoragePluginConfig.java ########## @@ -17,22 +17,51 @@ */ package org.apache.drill.exec.store; +import com.fasterxml.jackson.annotation.JsonProperty; import org.apache.drill.common.logical.StoragePluginConfig; import com.fasterxml.jackson.annotation.JsonTypeName; -@JsonTypeName("named") +@JsonTypeName(NamedStoragePluginConfig.NAME) public class NamedStoragePluginConfig extends StoragePluginConfig { - public String name; + + public static final String NAME = "named"; + + private final String name; + + public NamedStoragePluginConfig(@JsonProperty("name") String name) { Review comment: Please add `@JsonCreator` annotation. Not required but just to be inline with other plugins. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services