/************************************************************************* * * * EJBCA Community: The OpenSource Certificate Authority * * * * This software is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2.1 of the License, or any later version. * * * * See terms of license at gnu.org. * * * *************************************************************************/ package org.ejbca.ui.cli; import java.util.ArrayList; import java.util.List; /** * Implements the EJBCA CVC RA WS command line interface * * @version $Id: CvcWsRaCli.java 19902 2014-09-30 14:32:24Z anatom $ */ public class CvcWsRaCli extends ClientToolBox { /* (non-Javadoc) * @see org.ejbca.ui.cli.ClientToolBox#execute(java.lang.String[]) */ @Override protected void execute(String[] args) { final List lArgs = new ArrayList(); for ( int i=1; i[]{String[].class}).invoke(null, new Object[]{lArgs.toArray(new String[]{})}); } catch (Exception e) { e.printStackTrace(System.err); } } /* (non-Javadoc) * @see org.ejbca.ui.cli.ClientToolBox#getName() */ @Override protected String getName() { return "CvcWsRaCli"; } }