1 13 14 package org.ejbca.ui.cli; 15 16 import java.io.PrintStream ; 17 18 23 public abstract class BaseAdminCommand extends BaseCommand implements IAdminCommand { 24 31 public BaseAdminCommand(String [] args, int adminType, String adminId, PrintStream outStream) { 32 init(args, adminType, adminId, outStream); 33 } 34 35 41 public BaseAdminCommand(String [] args, int adminType, String adminId) { 42 init(args, adminType, adminId, null); 43 } 44 45 } | Popular Tags |