Ignore:
Timestamp:
May 3, 2011, 8:25:38 PM (13 years ago)
Author:
mlg
Message:

Adds support for changing level on addSimple.

File:
1 edited

Legend:

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

    r10716 r10749  
    7070    public List<Image> search(String searchString) throws JiwigoException;
    7171
     72    //    /**
     73    //     * Uses the pwg.images.addsimple web API to add a new picture
     74    //     * http://piwigo.org/doc/doku.php?id=en:dev:webapi:pwg.images.addsimple
     75    //     *
     76    //     * @param file
     77    //     * @param category
     78    //     * @param title
     79    //     * @throws IOException
     80    //     * @throws JiwigoException
     81    //     */
     82    //    public void addSimple(File file, Integer category, String title) throws JiwigoException;
     83
    7284    /**
    7385     * Uses the pwg.images.addsimple web API to add a new picture
     
    7789     * @param category
    7890     * @param title
     91     * @param level
    7992     * @throws IOException
    8093     * @throws JiwigoException
    8194     */
    82     public void addSimple(File file, Integer category, String title) throws JiwigoException;
     95    public void addSimple(File file, Integer category, String title, Integer level) throws JiwigoException;
    8396
    8497    /**
Note: See TracChangeset for help on using the changeset viewer.