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.FlowEntryId; |
| 11 | |
| 12 | /** |
| 13 | * Serialize a Flow Entry ID as a hexadecimal string. |
| 14 | */ |
| 15 | public class FlowEntryIdSerializer extends JsonSerializer<FlowEntryId> { |
| 16 | |
| 17 | @Override |
| 18 | public void serialize(FlowEntryId flowEntryId, JsonGenerator jGen, |
| 19 | SerializerProvider serializer) |
| 20 | throws IOException, JsonProcessingException { |
| 21 | jGen.writeString(flowEntryId.toString()); |
| 22 | } |
| 23 | } |