[ 
https://issues.apache.org/jira/browse/HADOOP-17287?focusedWorklogId=491582&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-491582
 ]

ASF GitHub Bot logged work on HADOOP-17287:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 26/Sep/20 17:32
            Start Date: 26/Sep/20 17:32
    Worklog Time Spent: 10m 
      Work Description: sunchao commented on a change in pull request #2341:
URL: https://github.com/apache/hadoop/pull/2341#discussion_r495478153



##########
File path: 
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ReflectionUtils.java
##########
@@ -124,15 +124,29 @@ private static void setJobConf(Object theObject, 
Configuration conf) {
    */
   @SuppressWarnings("unchecked")
   public static <T> T newInstance(Class<T> theClass, Configuration conf) {
+    return newInstance(theClass, conf, EMPTY_ARRAY);
+  }
+
+  /** Create an object for the given class and initialize it from conf
+   *
+   * @param theClass class of which an object is created
+   * @param conf Configuration
+   * @param argsType the types of the arguments
+   * @param values the values of the arguments
+   * @return a new object
+   */
+  @SuppressWarnings("unchecked")
+  public static <T> T newInstance(Class<T> theClass, Configuration conf,

Review comment:
       Could you add a test in `TestReflectionUtils`? 

##########
File path: 
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/ReflectionUtils.java
##########
@@ -124,15 +124,29 @@ private static void setJobConf(Object theObject, 
Configuration conf) {
    */
   @SuppressWarnings("unchecked")
   public static <T> T newInstance(Class<T> theClass, Configuration conf) {
+    return newInstance(theClass, conf, EMPTY_ARRAY);
+  }
+
+  /** Create an object for the given class and initialize it from conf
+   *
+   * @param theClass class of which an object is created
+   * @param conf Configuration
+   * @param argsType the types of the arguments
+   * @param values the values of the arguments
+   * @return a new object
+   */
+  @SuppressWarnings("unchecked")
+  public static <T> T newInstance(Class<T> theClass, Configuration conf,
+      Class<?>[] argsType, Object ... values) {

Review comment:
       nit: `argsType` -> `argTypes`




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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


Issue Time Tracking
-------------------

    Worklog Id:     (was: 491582)
    Time Spent: 20m  (was: 10m)

> Support new Instance by non default constructor by ReflectionUtils
> ------------------------------------------------------------------
>
>                 Key: HADOOP-17287
>                 URL: https://issues.apache.org/jira/browse/HADOOP-17287
>             Project: Hadoop Common
>          Issue Type: Improvement
>    Affects Versions: 3.4.0
>            Reporter: maobaolong
>            Assignee: maobaolong
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 20m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org

Reply via email to