Giter Site home page Giter Site logo

swe574-group1's People

Contributors

googlecodeexporter avatar uskudarli avatar

Watchers

 avatar

swe574-group1's Issues

Building new version of requirements definition document.

Gain relevant modifications and additions from the participants and build new 
version of RDS. Also, following actions should be taken;

1. Organize funcitonal requirements
2. Specify browser types and versions which our software system will support in 
section 4

Original issue reported on code.google.com by [email protected] on 8 Mar 2014 at 8:27

getIngredients method should accept null criteria

As clients, we need an interface which returns all foods from the database 
without giving any criteria. Therefore, getIngredients should accept null 
criteria and returns all ingredients available in case querystring argument is 
null.

For more details, refer to API document v3.2 and section 3.2.

"This method searches and returnes all ingredients whose names start with the 
given query string. In case no criter is given ( the queryString parameter left 
blank), the method returns all ingredients specified in the database."

Original issue reported on code.google.com by [email protected] on 20 May 2014 at 5:35

Implement user profile page

A user's profile page shall be able to viewed by another user through the user 
search page. Also, a follow button shall be placed in the profile page to 
enable another user to follow him/her.

Original issue reported on code.google.com by [email protected] on 20 May 2014 at 2:56

getIngredient method is not working properly

This method does not return the foods matching with the criteria. The reason is 
findByCriteria method creates queries with AND keyword. If the parameter is set 
to S%, this method searches the foods with the exact name S%. 

Instead you should write your own JPA query with LIKE keyword. It will be 
something like this:


    public List<Food> findFoods(String name) {
        String sql = "select f from Food f where f.name like :name";

        @SuppressWarnings("unchecked")
        List<Food> resultList = em.createQuery(sql).setParameter("name", name).getResultList();
        return resultList;
    }

And it will be called like this:

List<Food> findFood = DaoFactory.getInstance().getBaseDao().findFood("S%");

Original issue reported on code.google.com by [email protected] on 27 May 2014 at 7:50

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.