1 /*
2 * Copyright (C) The Spice Group. All rights reserved.
3 *
4 * This software is published under the terms of the Spice
5 * Software License version 1.1, a copy of which has been included
6 * with this distribution in the LICENSE.txt file.
7 */
8 package org.codehaus.spice.xmlpolicy.builder;
9
10 import java.io.IOException;
11 import java.security.KeyStore;
12 import java.security.NoSuchAlgorithmException;
13 import java.security.cert.CertificateException;
14 import java.util.HashMap;
15
16 /***
17 *
18 * @author Peter Donald
19 * @version $Revision: 1.1 $ $Date: 2003/12/02 09:16:07 $
20 */
21 class MockKeyStore
22 extends KeyStore
23 {
24 MockKeyStore( final HashMap certs )
25 throws IOException, NoSuchAlgorithmException, CertificateException
26 {
27 super( new MockKeyStoreSpi( certs ), null, null );
28 load( null, null );
29 }
30 }
This page was automatically generated by Maven