*
* @param args command line arguments
*/
public static void main(String[] args) {
try {
IAdminCommand cmd = XKMSCLICommandFactory.getCommand(args);
if (cmd != null) {
cmd.execute();
} else {
System.out.println(
"Usage: locate | register | reissue | recover | revoke\n\n" +
"Please note that XKMS cannot be used with end entites created with the EMPTY end entity profile for security reasons.");