blob: 4b6583c0c45234b31ba0d0d382eae8bfe8b18821 [file] [log] [blame]
Pavlin Radoslavovad008e02013-02-21 18:42:42 -08001package net.floodlightcontroller.util.serializers;
2
3import java.io.IOException;
4
5import org.codehaus.jackson.JsonGenerator;
6import org.codehaus.jackson.JsonProcessingException;
7import org.codehaus.jackson.map.JsonSerializer;
8import org.codehaus.jackson.map.SerializerProvider;
9
10import net.floodlightcontroller.util.FlowEntryId;
11
12/**
13 * Serialize a Flow Entry ID as a hexadecimal string.
14 */
15public 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}