blob: 8f0fd2ead8c53a6d939d9b7879f58d122a357e7c [file] [log] [blame]
CNlucius5b2fff12015-08-20 14:13:46 +08001/*
2 * Copyright 2015 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 */
16package org.onosproject.vtnrsc.web;
17
18import static com.google.common.base.Preconditions.checkNotNull;
19
20import org.onosproject.codec.CodecContext;
21import org.onosproject.codec.JsonCodec;
22import org.onosproject.vtnrsc.Subnet;
23
24import com.fasterxml.jackson.databind.node.ObjectNode;
25
26/**
27 * Subnet JSON codec.
28 */
29public final class SubnetCodec extends JsonCodec<Subnet> {
30 @Override
31 public ObjectNode encode(Subnet subnet, CodecContext context) {
32 checkNotNull(subnet, "Subnet cannot be null");
33 ObjectNode result = context.mapper().createObjectNode()
34 .put("id", subnet.id().toString())
35 .put("gate_ip", subnet.gatewayIp().toString())
36 .put("network_id", subnet.networkId().toString())
37 .put("name", subnet.subnetName().toString())
38 .put("ip_version", subnet.ipVersion().toString())
39 .put("cidr", subnet.cidr().toString())
40 .put("shared", subnet.shared())
41 .put("enabled_dchp", subnet.dhcpEnabled())
42 .put("tenant_id", subnet.tenantId().toString());
43 result.set("alloction_pools", new AllocationPoolsCodec().encode(subnet
44 .allocationPools(), context));
45 result.set("host_routes",
46 new HostRoutesCodec().encode(subnet.hostRoutes(), context));
47 return result;
48 }
49}