Example usage for java.security.cert CertStore getType

List of usage examples for java.security.cert CertStore getType

Introduction

In this page you can find the example usage for java.security.cert CertStore getType.

Prototype

public final String getType() 

Source Link

Document

Returns the type of this CertStore .

Usage

From source file:MainClass.java

public static void main(String args[]) throws Exception {

    CertificateFactory cf = CertificateFactory.getInstance("X.509");
    List mylist = new ArrayList();
    for (int i = 0; i < args.length; i++) {
        FileInputStream in = new FileInputStream(args[i]);
        Certificate c = cf.generateCertificate(in);
        mylist.add(c);//from w ww  . j  a  va 2  s .com
    }
    CertStoreParameters cparam = new CollectionCertStoreParameters(mylist);
    CertStore cs = CertStore.getInstance("Collection", cparam);
    System.out.println(cs.getCertStoreParameters());
    System.out.println(cs.getProvider());
    System.out.println(cs.getType());

}