01: /*
02: * AliasSelector.java
03: *
04: * Created on April 26, 2007, 12:53 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package com.sun.xml.wss;
11:
12: import java.util.Map;
13:
14: /**
15: *
16: * Used with a Keystore Assertion to select an Alias to be used for locating the Private Key
17: * at runtime.
18: * @author kumar.jayanti
19: */
20: public interface AliasSelector {
21:
22: public String select(Map runtimeProps);
23: }
|