| org.mmbase.util.PasswordGeneratorInterface
All known Subclasses: org.mmbase.util.PasswordGenerator,
PasswordGeneratorInterface | public interface PasswordGeneratorInterface (Code) | | Interface for the automatic generation of passwords.
The passwords generated by classes implementing this interface are based on a template.
A template can exists of a number of characters, which are replaced by
the generator.
The meaning of the characters in a template is left to the implementing class.
author: Rico Jansen author: Pierre van Rooden (javadocs) version: $Id: PasswordGeneratorInterface.java,v 1.6 2004/09/30 14:07:11 pierre Exp $ |
Method Summary | |
public String | getPassword() Generate a password, based on a default template. | public String | getPassword(String template) Generate a password, based on the given template.
Parameters: template - the template the password should be based on. |
getPassword | public String getPassword()(Code) | | Generate a password, based on a default template.
the generated password. |
getPassword | public String getPassword(String template)(Code) | | Generate a password, based on the given template.
Parameters: template - the template the password should be based on. the generated password. |
|
|