KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > services > actions > NoAction


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.actions;
14
15
16 import org.ejbca.core.model.services.ActionException;
17 import org.ejbca.core.model.services.ActionInfo;
18 import org.ejbca.core.model.services.BaseAction;
19
20 /**
21  * No Action that does nothing
22  *
23  * @author Philip Vendil 2006 sep 27
24  *
25  * @version $Id: NoAction.java,v 1.1 2006/10/14 05:01:47 herrvendil Exp $
26  */

27 public class NoAction extends BaseAction {
28     
29
30     /**
31      * @see org.ejbca.core.model.services.IAction#performAction(org.ejbca.core.model.services.ActionInfo)
32      */

33     public void performAction(ActionInfo actionInfo) throws ActionException {
34         // Do nothing
35
}
36
37 }
38
Popular Tags