KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > ui > web > admin > services > servicetypes > ActionType


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.ui.web.admin.services.servicetypes;
14
15
16 /**
17  * Class representing an Action Type, should be registered in the
18  * ServiceTypesManager. Should be inhereted by all action managed beans.
19  *
20  * @author Philip Vendil 2006 sep 29
21  *
22  * @version $Id: ActionType.java,v 1.1 2006/10/01 17:46:47 herrvendil Exp $
23  */

24 public abstract class ActionType extends ServiceType {
25
26     public ActionType(String JavaDoc subViewPage, String JavaDoc name, boolean translatable) {
27         super(subViewPage, name, translatable);
28     }
29
30 }
31
Popular Tags