Abraham Elmahrek created SQOOP-1436:
---------------------------------------
Summary: Sqoop2: Custom form name
Key: SQOOP-1436
URL: https://issues.apache.org/jira/browse/SQOOP-1436
Project: Sqoop
Issue Type: Bug
Reporter: Abraham Elmahrek
Fix For: 1.99.4
Form names and input names are currently derived from the configuration
property name that they exist in (example 1). It would be nice if custom names
could be provided so that the property names could remain simple.
Example 1:
The derived form name for the "table" property in the configuration object
below is "table".
{code}
@ConfigurationClass
public class FromJobConfiguration {
@Form public TableForm table;
...
}
{code}
Example 2:
The form name for the "table" member in the the configuration object below is
"from-table".
{code}
@ConfigurationClass
public class FromJobConfiguration {
@Form(name="from-table")
public TableForm table;
...
}
{code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)