blob: 59ceb2b35fc2294a5137a9384cac2ac0a1bda7ea [file] [log] [blame]
Ray Milkeyc95bb9d2015-01-06 10:28:24 -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.codec.impl;
17
18import org.onosproject.codec.CodecContext;
19import org.onosproject.codec.JsonCodec;
20import org.onosproject.net.intent.ConnectivityIntent;
21import org.onosproject.net.intent.HostToHostIntent;
22
23import com.fasterxml.jackson.databind.node.ObjectNode;
24
25import static com.google.common.base.Preconditions.checkNotNull;
26
27/**
28 * Host to host intent codec.
29 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080030public final class HostToHostIntentCodec extends JsonCodec<HostToHostIntent> {
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080031
32 @Override
33 public ObjectNode encode(HostToHostIntent intent, CodecContext context) {
34 checkNotNull(intent, "Host to host intent cannot be null");
35
36 final JsonCodec<ConnectivityIntent> connectivityIntentCodec =
37 context.codec(ConnectivityIntent.class);
38 final ObjectNode result = connectivityIntentCodec.encode(intent, context);
39
40 final String one = intent.one().toString();
41 final String two = intent.two().toString();
42 result.put("one", one);
43 result.put("two", two);
44
45 return result;
46 }
47}