source: extensions/jiwigo-ws-api/src/main/java/fr/mael/jiwigo/transverse/enumeration/CacheEnum.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: 779 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 CacheEnum {
23
24    MAX_IMAGES_IN_IMAGE_DAO(10);
25
26    protected Integer nb;
27
28    /** Constructeur */
29    CacheEnum(Integer pNb) {
30        this.nb = pNb;
31    }
32
33    public Integer getNb() {
34        return this.nb;
35    }
36}
Note: See TracBrowser for help on using the repository browser.