Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

cryptix.pki
Class KeyBundleFactorySpi  view KeyBundleFactorySpi download KeyBundleFactorySpi.java

java.lang.Object
  extended bycryptix.pki.KeyBundleFactorySpi

public abstract class KeyBundleFactorySpi
extends java.lang.Object

Service provider interface for KeyBundleFactory

Version:
$Revision: 1.2 $

Constructor Summary
KeyBundleFactorySpi()
           
 
Method Summary
abstract  KeyBundle engineGenerateEmptyKeyBundle()
          Generates a new empty KeyBundle.
abstract  KeyBundle engineGenerateKeyBundle(java.io.InputStream in)
          Generates a KeyBundle from an input stream.
abstract  java.util.Collection engineGenerateKeyBundles(java.io.InputStream in)
          Generates a (possible empty) collection of keybundles from an input stream.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

KeyBundleFactorySpi

public KeyBundleFactorySpi()
Method Detail

engineGenerateKeyBundles

public abstract java.util.Collection engineGenerateKeyBundles(java.io.InputStream in)
                                                       throws KeyBundleException,
                                                              java.io.IOException
Generates a (possible empty) collection of keybundles from an input stream.

Note: the entire inputstream will be read when the inputstream does not support the mark() and reset() methods.


engineGenerateKeyBundle

public abstract KeyBundle engineGenerateKeyBundle(java.io.InputStream in)
                                           throws KeyBundleException,
                                                  java.io.IOException
Generates a KeyBundle from an input stream.

Note: the entire inputstream will be read when the inputstream does not support the mark() and reset() methods.


engineGenerateEmptyKeyBundle

public abstract KeyBundle engineGenerateEmptyKeyBundle()
                                                throws KeyBundleException
Generates a new empty KeyBundle.