blob: 8e4467e352f76b4a73cc1264de27bd8e684f8e08 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Yuta HIGUCHI5fa3dc02014-10-15 17:08:13 -070016package org.onlab.onos.store.serializers;
17
18import org.onlab.packet.MacAddress;
19
20import com.esotericsoftware.kryo.Kryo;
21import com.esotericsoftware.kryo.Serializer;
22import com.esotericsoftware.kryo.io.Input;
23import com.esotericsoftware.kryo.io.Output;
24
25/**
26 * Kryo Serializer for {@link MacAddress}.
27 */
28public class MacAddressSerializer extends Serializer<MacAddress> {
29
30 /**
31 * Creates {@link MacAddress} serializer instance.
32 */
33 public MacAddressSerializer() {
34 super(false, true);
35 }
36
37 @Override
38 public void write(Kryo kryo, Output output, MacAddress object) {
Yuta HIGUCHI3e848a82014-11-02 20:19:42 -080039 output.writeBytes(object.toBytes());
Yuta HIGUCHI5fa3dc02014-10-15 17:08:13 -070040 }
41
42 @Override
43 public MacAddress read(Kryo kryo, Input input, Class<MacAddress> type) {
44 return MacAddress.valueOf(input.readBytes(MacAddress.MAC_ADDRESS_LENGTH));
45 }
46
47}