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.core.model.ca.catoken; 15 16 import java.io.Serializable; 17 18 /** 19 * Holds nonsensitive information about a null CAToken. Used by processed external CAs not having any keys. 20 * 21 * @version $Id: NullCATokenInfo.java,v 1.1 2006/01/17 20:31:51 anatom Exp $ 22 */ 23 public class NullCATokenInfo extends CATokenInfo implements Serializable { 24 25 public NullCATokenInfo(){} 26 27 28 } 29