Ignore:
Timestamp:
Feb 27, 2011, 1:38:04 PM (13 years ago)
Author:
mlg
Message:

Changes function name (to english)
version changed to 0.13.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/jiwigo-ws-api/src/main/java/fr/mael/jiwigo/service/TagService.java

    r9387 r9392  
    7777     * @throws IOException
    7878     */
    79     public List<Tag> lister() throws IOException {
    80         return TagDao.getInstance(sessionManager).lister();
     79    public List<Tag> list() throws IOException {
     80        return TagDao.getInstance(sessionManager).list();
    8181    }
    8282
     
    8787     * @throws IOException
    8888     */
    89     public boolean creer(String nom) throws IOException {
     89    public boolean create(String nom) throws IOException {
    9090        Tag tag = new Tag();
    91         tag.setNom(nom);
    92         return TagDao.getInstance(sessionManager).creer(tag);
     91        tag.setName(nom);
     92        return TagDao.getInstance(sessionManager).create(tag);
    9393    }
    9494
Note: See TracChangeset for help on using the changeset viewer.