KickJava   Java API By Example, From Geeks To Geeks.

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


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  *
19  * Help base class that manages that implements the init method of the interface
20  * and manages the propertes.
21  *
22  * @author Philip Vendil 2006 sep 27
23  *
24  * @version $Id: BaseInterval.java,v 1.3 2006/10/26 11:01:01 herrvendil Exp $
25  */

26 public abstract class BaseInterval extends BaseServiceComponent implements IInterval{
27
28     protected Properties JavaDoc properties = null;
29     protected String JavaDoc serviceName = null;
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
Popular Tags