blob: d4d2df644ec38fd9779932837a6e93243675fd27 [file] [log] [blame]
Ray Milkey82e50312015-01-22 17:01:42 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Ray Milkey82e50312015-01-22 17:01:42 -08003 *
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 */
16package org.onosproject.codec.impl;
17
18import org.onosproject.codec.CodecContext;
19import org.onosproject.codec.JsonCodec;
20import org.onosproject.net.topology.TopologyCluster;
21
22import com.fasterxml.jackson.databind.node.ObjectNode;
23
24import static com.google.common.base.Preconditions.checkNotNull;
25
26/**
27 * Topology cluster JSON codec.
28 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080029public final class TopologyClusterCodec extends JsonCodec<TopologyCluster> {
Ray Milkey82e50312015-01-22 17:01:42 -080030
31 @Override
32 public ObjectNode encode(TopologyCluster cluster, CodecContext context) {
33 checkNotNull(cluster, "Cluster cannot be null");
34
35 return context.mapper().createObjectNode()
36 .put("id", cluster.id().index())
37 .put("deviceCount", cluster.deviceCount())
38 .put("linkCount", cluster.linkCount())
39 .put("root", cluster.root().toString());
40 }
41}