View Javadoc

1   /***
2    * 
3    */
4   package de.cohesion.bssh;
5   
6   import java.io.IOException;
7   
8   /***
9    * @author schulzs
10   */
11  public interface PasswordStore {
12  
13  	char[] getPassword(final Member m) throws IOException;
14  
15  	void store(final Member m, char[] password) throws IOException;
16  
17  }