summaryrefslogtreecommitdiffstats
path: root/luni/src/test/java/org/apache/harmony/security/tests/java/security/KeyStoreLoadStoreParameterTest.java
blob: 81ec30d25c74b329d69eaa2ba3744fe9ecb50b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.apache.harmony.security.tests.java.security;

import java.security.KeyStore;

public class KeyStoreLoadStoreParameterTest {

    class MyLoadStoreParameter implements KeyStore.LoadStoreParameter {
       public KeyStore.ProtectionParameter getProtectionParameter() {
            return null;
       }
    }



}