1 23 package com.sun.enterprise.server.pluggable; 24 25 import java.security.KeyStore ; 26 import com.sun.enterprise.config.ConfigContext; 27 28 33 public interface SecuritySupport { 34 35 39 public KeyStore [] getKeyStores(); 40 41 44 public KeyStore [] getTrustStores(); 45 46 50 public String [] getKeyStorePasswords(); 51 52 56 public KeyStore getKeyStore(String token); 57 58 62 public KeyStore getTrustStore(String token); 63 64 68 public String getKeyStorePassword(String token); 69 70 74 public String [] getTokenNames(); 75 76 83 public void synchronizeKeyFile(ConfigContext config, String fileRealmName) 84 throws Exception ; 85 } 86 | Popular Tags |