Package org.apache.beehive.samples.petstore.model

Examples of org.apache.beehive.samples.petstore.model.Account


    }

    public void handleLogin(String username)
        throws NoSuchAccountException, InvalidIdentifierException {

        Account account = _accountControl.getAccount(username);

        // Throw an exception if the user is not found
        if(account == null)
      throw new NoSuchAccountException("Unknown user: " + username);
       
        // and set the account (this toggles the user's logged in status)
        setAccount(account);

        // set the user's favorites list if they are logged in
        if (account.isMyListOpt())
        {
            Product[] favProducts = _catalogControl.getProductListByCategory(account.getFavCategory());
            setMyList(favProducts);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.beehive.samples.petstore.model.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.