sanity fixes about the encodingY
[pnews.git] / war / src / main / java / pnews / Category.java
1 package pnews;
2
3 public enum Category {
4         TOP("top"),
5         FRANCE("france"),
6         SPORT("sport"),
7         EUROPE("europe"),
8         MONDE("monde"),
9         ECO("eco"),
10         ESSONNE("essonne"),
11         TECHNOLOGIE("technologie"),
12         PEOPLE("people");
13         
14         private final String id;
15                 
16         private Category(String id) {
17                 this.id = id;
18         }
19         
20         public String getId() {
21                 return id;
22         }
23 }