blob: 87e9ba44798ae6902ae826bdf8f8ef01f4fb5514 [file] [log] [blame]
Thomas Vachuskae0f804a2014-10-27 23:40:48 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19package org.onlab.onos.store.serializers;
20
21import com.esotericsoftware.kryo.Kryo;
22import com.esotericsoftware.kryo.Serializer;
23import com.esotericsoftware.kryo.io.Input;
24import com.esotericsoftware.kryo.io.Output;
25import org.onlab.onos.core.DefaultApplicationId;
26
27/**
28 * Kryo Serializer for {@link org.onlab.onos.core.DefaultApplicationId}.
29 */
30public final class DefaultApplicationIdSerializer extends Serializer<DefaultApplicationId> {
31
32 /**
33 * Creates {@link org.onlab.onos.core.DefaultApplicationId} serializer instance.
34 */
35 public DefaultApplicationIdSerializer() {
36 // non-null, immutable
37 super(false, true);
38 }
39
40 @Override
41 public void write(Kryo kryo, Output output, DefaultApplicationId object) {
42 kryo.writeObject(output, object.id());
43 kryo.writeObject(output, object.name());
44 }
45
46 @Override
47 public DefaultApplicationId read(Kryo kryo, Input input, Class<DefaultApplicationId> type) {
48 short id = kryo.readObject(input, Short.class);
49 String name = kryo.readObject(input, String.class);
50 return new DefaultApplicationId(id, name);
51 }
52}