source: extensions/jiwigo-ws-api/src/main/java/fr/mael/jiwigo/transverse/enumeration/CategoryEnum.java @ 9879

Last change on this file since 9879 was 9879, checked in by mlg, 13 years ago

Changed the licence
to a funniest one.

File size: 897 bytes
Line 
1/**
2 *
3 */
4package fr.mael.jiwigo.transverse.enumeration;
5
6/*
7 *  jiwigo-ws-api Piwigo webservice access Api
8 *  Copyright (c) 2010-2011 Mael mael@le-guevel.com
9 *                All Rights Reserved
10 *
11 *  This library is free software. It comes without any warranty, to
12 *  the extent permitted by applicable law. You can redistribute it
13 *  and/or modify it under the terms of the Do What The Fuck You Want
14 *  To Public License, Version 2, as published by Sam Hocevar. See
15 *  http://sam.zoy.org/wtfpl/COPYING for more details.
16 */
17/**
18
19 * @author mael
20 *
21 */
22public enum CategoryEnum {
23
24    ID("id"), NB_IMAGES("nb_images"), NB_TOTAL_IMAGES("total_nb_images"), URL("url"), NAME("name"), CAT_MERES(
25            "uppercats");
26
27    protected String label;
28
29    /** Constructeur */
30    CategoryEnum(String pLabel) {
31        this.label = pLabel;
32    }
33
34    public String getLabel() {
35        return this.label;
36    }
37}
Note: See TracBrowser for help on using the repository browser.