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.FlowId; |
| 11 | |
| 12 | /** |
| 13 | * Serialize a Flow ID as a hexadecimal string. |
| 14 | */ |
| 15 | public class FlowIdSerializer extends JsonSerializer<FlowId> { |
| 16 | |
| 17 | @Override |
| 18 | public void serialize(FlowId flowId, JsonGenerator jGen, |
| 19 | SerializerProvider serializer) |
| 20 | throws IOException, JsonProcessingException { |
Pavlin Radoslavov | 2013cbb | 2013-02-26 10:15:18 -0800 | [diff] [blame] | 21 | jGen.writeStartObject(); |
| 22 | jGen.writeStringField("value", flowId.toString()); |
| 23 | jGen.writeEndObject(); |
Pavlin Radoslavov | ad008e0 | 2013-02-21 18:42:42 -0800 | [diff] [blame] | 24 | } |
| 25 | } |