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

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


    return _catalogDao.getCategoryList();
    }

    public Category getCategory(String key) throws InvalidIdentifierException
    {
    Category cat = new Category();
    cat = _catalogDao.getCategory(key);
    if (cat == null)
      throw new InvalidIdentifierException("Category: " + key + " not found!");
    return cat;
    }
View Full Code Here


    return categories;
    }

    public Category getCategory(String key)
    {
    Category cat = new Category();
    try {
      cat = _dbControl.getCategory(key);
    } catch (SQLException e) {
            _logger.error( "Unexpected DAO exception", e );
      throw new DataStoreException("unexpected database exception");
View Full Code Here

TOP

Related Classes of org.apache.beehive.samples.petstore.model.Category

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.