Fix issue 2451 part #1: https://opends.dev.java.net/issues/show_bug.cgi?id=2451
It is now possible to override the default naming argument for dsconfig sub-commands using the CLI profile in the XML definitions. To do this add the "naming-argument-override" attribute to a relation's CLI profile relation element. For example:
<adm:relation name="virtual-attribute">
<adm:one-to-many />
<adm:profile name="ldap">
<ldap:rdn-sequence>
cn=Virtual Attributes,cn=config
</ldap:rdn-sequence>
</adm:profile>
<adm:profile name="cli">
<cli:relation naming-argument-override="name">
<cli:default-property name="enabled" />
<cli:default-property name="attribute-type" />
</cli:relation>
</adm:profile>
</adm:relation>