* @param clazz The class that will process the command line arguments
* @return The client helper
*/
@SuppressWarnings("unchecked")
protected CommonsCliHelper createClientHelper(String[] args, Class clazz) {
CommonsCliHelper cliHelper = new CommonsCliHelper();
cliHelper.register(clazz);
cliHelper.parse(args);
return cliHelper;
}