blob: 3210408dad9539baac70a8a1a99fe209e92d3419 [file] [log] [blame]
Ray Milkey1f95bd32014-12-10 11:11:00 -08001/*
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 */
16package org.onosproject.codec.impl;
17
18import org.onosproject.codec.CodecContext;
19import org.onosproject.codec.JsonCodec;
20import org.onosproject.net.HostLocation;
21
22import com.fasterxml.jackson.databind.node.ObjectNode;
23
24import static com.google.common.base.Preconditions.checkNotNull;
25
26/**
27 * Host JSON codec.
28 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080029public final class HostLocationCodec extends JsonCodec<HostLocation> {
Ray Milkey1f95bd32014-12-10 11:11:00 -080030
31 @Override
32 public ObjectNode encode(HostLocation hostLocation, CodecContext context) {
33 checkNotNull(hostLocation, "Host location cannot be null");
34 return context.mapper().createObjectNode()
35 .put("elementId", hostLocation.elementId().toString())
36 .put("port", hostLocation.port().toString());
37 }
38
39}