1 8 package org.codehaus.loom.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 21 class MockNoInitKeyStore 22 extends KeyStore  23 { 24 MockNoInitKeyStore( final HashMap certs ) 25 throws IOException , NoSuchAlgorithmException , CertificateException  26 { 27 super( new MockKeyStoreSpi( certs ), null, null ); 28 } 29 } 30 | Popular Tags |