aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/security/Provider.java
blob: ac2cd7864b551cfb376feb2bd513535fbd137faa (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
41
42
43
44
45
46
47
48
49
50
51
52
53
/* Copyright (C) 2000  Free Software Foundation

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
details.  */

package java.security;
import java.util.Properties;

/**
 * @author Warren Levy <warrenl@cygnus.com>
 * @date February 7, 2000.
 */

/**
 * Written using on-line Java Platform 1.2 API Specification.
 * Status:  Partially implemented.
 */

public abstract class Provider extends Properties
{
  // FIXME: Check the following property values against specs!
  protected Provider(String name, double version, String info)
  {
    super();
    put("java.security.Provider.Name", name);
    put("java.security.Provider.Version", Double.toString(version));
    put("java.security.Provider.Info", info);
  }

  public String getName()
  {
    return getProperty("java.security.Provider.Name");
  }

  public double getVersion()
  {
    return Double.valueOf(getProperty("java.security.Provider.Version")).doubleValue();
  }

  public String getInfo()
  {
    return getProperty("java.security.Provider.Info");
  }

  public String toString()
  {
    // FIXME: Check this string against the spec.
    return getName() + " " + getProperty("java.security.Provider.Version");
  }
}