summaryrefslogtreecommitdiffstats
path: root/python/doc/tutorial
Commit message (Expand)AuthorAgeFilesLines
* please use spaces between variable names and valuesFrederic Peters2004-09-081-0/+3
* Removed obsolete Python doc.Emmanuel Raviart2004-08-299-218/+0
* fixed tabulations in python files (oh the horror; they were mixed with spaceFrederic Peters2004-07-252-2/+2
* ignore Makefile.in, Makefile, .deps and .libs under python/Frederic Peters2004-07-221-0/+2
* usage of pkg-config to get library information in configure; automake for theFrederic Peters2004-07-221-0/+7
* Added init & shutdown functions to tutorial.Emmanuel Raviart2004-07-157-0/+21
* The API is globally frozen, but locally melting.Emmanuel Raviart2004-07-131-2/+2
* Document a trap in which I was caught.Emmanuel Raviart2004-07-131-0/+1
* Use RSA keys instead of DSA.Emmanuel Raviart2004-07-131-1/+1
* Corrected constant name.Emmanuel Raviart2004-07-131-1/+1
* Corrected SP init for C & Python.Emmanuel Raviart2004-07-121-4/+6
* Added Python files explaining how to create a SP using Lasso.Emmanuel Raviart2004-07-067-0/+185
a855d03f0c117bfadc1979'>commitdiffstats
path: root/base/common/src/com/netscape/certsrv/publish/PublisherPlugin.java
blob: 173643a6ba642bb4790df2cd506a8a7feffeb248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.certsrv.publish;

import com.netscape.certsrv.base.Plugin;

/**
 * This class represents a registered publisher plugin.
 * <P>
 *
 * @version $Revision$, $Date$
 */
public class PublisherPlugin extends Plugin {

    /**
     *
     * Constructs a PublisherPlugin based on name and classpath.
     *
     * @param id name of plugin.
     * @param path Classpath of plugin.
     */
    public PublisherPlugin(String id, String path) {
        super(id, path);
    }
}