1 /************************************************************************* 2 * * 3 * EJBCA: The OpenSource Certificate Authority * 4 * * 5 * This software is free software; you can redistribute it and/or * 6 * modify it under the terms of the GNU Lesser General Public * 7 * License as published by the Free Software Foundation; either * 8 * version 2.1 of the License, or any later version. * 9 * * 10 * See terms of license at gnu.org. * 11 * * 12 *************************************************************************/ 13 14 package org.ejbca.ui.cli; 15 16 import org.ejbca.core.model.log.Admin; 17 18 19 20 /** 21 * Base for RA commands, contains comom functions for RA operations 22 * 23 * @version $Id: BaseRaAdminCommand.java,v 1.3 2007/01/03 14:49:35 anatom Exp $ 24 */ 25 public abstract class BaseRaAdminCommand extends BaseAdminCommand { 26 27 /** 28 * Creates a new instance of BaseRaAdminCommand 29 * 30 * @param args command line arguments 31 */ 32 public BaseRaAdminCommand(String[] args) { 33 super(args, Admin.TYPE_RA_USER, "cli"); 34 } 35 36 } 37