KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > services > ActionInfo


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 package org.ejbca.core.model.services;
14
15 import java.io.Serializable JavaDoc;
16
17 /**
18  * General Class used to send information from a worker to a action.
19  *
20  * Can contain any data that both the worker and action supports.
21  *
22  * @author Philip Vendil 2006 sep 27
23  *
24  * @version $Id: ActionInfo.java,v 1.3 2006/10/14 05:01:46 herrvendil Exp $
25  */

26 public interface ActionInfo extends Serializable JavaDoc {
27
28 }
29
Popular Tags