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

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

Nouveau projet

File size: 714 bytes
Line 
1package json.serializers;
2
3import com.ether.simulation.Simulation;
4import net.sf.json.JSONObject;
5import net.sf.json.JsonConfig;
6
7public class SimulationJsonSerializer
8        extends AbstractJsonSerializer<Simulation>
9{
10    public JSONObject process( final Simulation simulation, final JsonConfig jsonConfig )
11    {
12        final JSONObject result = new JSONObject();
13
14        serialize( result, "id", simulation.getId(), jsonConfig );
15        serialize( result, "location", simulation.getLocation(), jsonConfig );
16        serialize( result, "xmlnsHeader", simulation.getXmlnsHeader(), jsonConfig );
17        serialize( result, "attributes", simulation.getAttribute(), jsonConfig );
18
19        return result;
20    }
21}
Note: See TracBrowser for help on using the repository browser.