blob: 45f2f3d34bc836490eb0bb0e50c8f3392ae98590 [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.ConnectPoint;
21import org.onosproject.net.intent.ConnectivityIntent;
22import org.onosproject.net.intent.PointToPointIntent;
23
24import com.fasterxml.jackson.databind.node.ObjectNode;
25
26import static com.google.common.base.Preconditions.checkNotNull;
27
28/**
29 * Point to point intent codec.
30 */
Ray Milkey540b2ce2015-02-04 17:50:20 -080031public final class PointToPointIntentCodec extends JsonCodec<PointToPointIntent> {
Ray Milkeyc95bb9d2015-01-06 10:28:24 -080032
33 @Override
34 public ObjectNode encode(PointToPointIntent intent, CodecContext context) {
35 checkNotNull(intent, "Point to point intent cannot be null");
36
37 final JsonCodec<ConnectivityIntent> connectivityIntentCodec =
38 context.codec(ConnectivityIntent.class);
39 final ObjectNode result = connectivityIntentCodec.encode(intent, context);
40
41 final JsonCodec<ConnectPoint> connectPointCodec =
42 context.codec(ConnectPoint.class);
43 final ObjectNode ingress =
44 connectPointCodec.encode(intent.ingressPoint(), context);
45 final ObjectNode egress =
46 connectPointCodec.encode(intent.egressPoint(), context);
47
48 result.set("ingressPoint", ingress);
49 result.set("egressPoint", egress);
50
51 return result;
52 }
53}