Pavlin Radoslavov | ad008e0 | 2013-02-21 18:42:42 -0800 | [diff] [blame] | 1 | package net.floodlightcontroller.util.serializers; |
| 2 | |
| 3 | import java.io.IOException; |
| 4 | |
| 5 | import org.codehaus.jackson.JsonGenerator; |
| 6 | import org.codehaus.jackson.JsonProcessingException; |
| 7 | import org.codehaus.jackson.map.JsonSerializer; |
| 8 | import org.codehaus.jackson.map.SerializerProvider; |
| 9 | |
| 10 | import net.floodlightcontroller.util.FlowPath; |
| 11 | |
| 12 | /** |
| 13 | * Serialize a FlowPath as a string. |
| 14 | */ |
| 15 | public class FlowPathSerializer extends JsonSerializer<FlowPath> { |
| 16 | |
| 17 | @Override |
| 18 | public void serialize(FlowPath flowPath, |
| 19 | JsonGenerator jGen, SerializerProvider serializer) |
| 20 | throws IOException, JsonProcessingException { |
| 21 | jGen.writeStartObject(); |
| 22 | jGen.writeObjectField("flowId", flowPath.flowId()); |
| 23 | jGen.writeObjectField("installerId", flowPath.installerId()); |
| 24 | jGen.writeObjectField("dataPath", flowPath.dataPath()); |
| 25 | jGen.writeEndObject(); |
| 26 | } |
| 27 | } |