Package net.sf.gluent.doc.fluentwebapp.rebelforum

Examples of net.sf.gluent.doc.fluentwebapp.rebelforum.Account


    accounts.add(account);
  }

  @Override
  public Account authenticate(String username, String password) {
    Account account = accountsByName.get(username);
    if (account == null) {
      return null;
    }
    if (!account.password().equals(password)) {
      return null;
    }
    return account;
  }
View Full Code Here


public class RebelForumDemoMain {

  public static void main(String[] args) {
    RebelForumConfigurationMock conf = new RebelForumConfigurationMock(8888);
    conf.authenticatorMock().createAccount(
        new Account("Yoda", "yoda's secret"));
    conf.authenticatorMock().createAccount(
        new Account("Luke", "luke's secret"));

    conf.intelligenceHintSystemMock().createHint(
        "Boba Fett after rebel?",
        "Several sources have reason to believe Darth Vader"
            + " hired bounty hunters, Boba Fett among them,"
View Full Code Here

TOP

Related Classes of net.sf.gluent.doc.fluentwebapp.rebelforum.Account

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.