blob: a97ab8bb1586b81f83f0d3b5e32d8c4bd0fd6e9a [file] [log] [blame]
Sho SHIMIZUb2b2d982015-09-11 15:35:06 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Sho SHIMIZUb2b2d982015-09-11 15:35:06 -07003 *
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 */
onosjcc36e04a82015-10-27 16:46:37 +080016package org.onosproject.vtnweb.web;
Sho SHIMIZUb2b2d982015-09-11 15:35:06 -070017
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("gateway_ip", subnet.gatewayIp().toString())
36 .put("network_id", subnet.networkId().toString())
37 .put("name", subnet.subnetName())
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 .put("ipv6_address_mode", subnet.ipV6AddressMode() == null ? null
44 : subnet.ipV6AddressMode().toString())
45 .put("ipv6_ra_mode", subnet.ipV6RaMode() == null ? null
46 : subnet.ipV6RaMode().toString());
47 result.set("allocation_pools", new AllocationPoolsCodec().encode(subnet
48 .allocationPools(), context));
49 result.set("host_routes",
50 new HostRoutesCodec().encode(subnet.hostRoutes(), context));
51 return result;
52 }
53}