source: ether_statistics/web/src/json/serializers/PlateformJsonSerializer.java @ 569

Last change on this file since 569 was 569, checked in by vmipsl, 12 years ago

Nouveau projet

File size: 664 bytes
Line 
1package json.serializers;
2
3import com.medias.database.objects.Plateforme;
4import net.sf.json.JSONObject;
5import net.sf.json.JsonConfig;
6
7public class PlateformJsonSerializer
8        extends AbstractJsonSerializer<Plateforme>
9{
10    public JSONObject process( final Plateforme plateform, final JsonConfig jsonConfig )
11    {
12        final JSONObject result = new JSONObject();
13
14        serialize( result, "id", plateform.getPlateformeId(), jsonConfig );
15        serialize( result, "name", plateform.getPlateformeNom(), jsonConfig );
16        serialize( result, "type", plateform.getTypePlateforme().getTypePlateformeNom(), jsonConfig );
17
18        return result;
19    }
20}
Note: See TracBrowser for help on using the repository browser.