KickJava   Java API By Example, From Geeks To Geeks.

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


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.util.Properties JavaDoc;
16
17 /**
18  * Help base class that manages that implements the init method of the interface
19  * and manages the propertes.
20  *
21  * @author Philip Vendil 2006 sep 27
22  *
23  * @version $Id: BaseAction.java,v 1.4 2006/11/02 08:03:25 anatom Exp $
24  */

25 public abstract class BaseAction extends BaseServiceComponent implements IAction{
26
27     protected Properties JavaDoc properties = null;
28     protected String JavaDoc serviceName = null;
29     
30     /**
31      * @see org.ejbca.core.model.services.IAction#init(Properties)
32      */

33     public void init(Properties JavaDoc properties, String JavaDoc serviceName) {
34        this.properties = properties;
35        this.serviceName = serviceName;
36     }
37     
38
39
40
41
42 }
43
Popular Tags