blob: ca018121c4671bd17b222fe1915aca5d05ece876 [file] [log] [blame]
hirokif4ed5212018-05-26 22:39:38 -07001/*
2 * Copyright 2018-present Open Networking Foundation
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 */
16
17package org.onosproject.odtn.utils.tapi;
18
19import java.util.UUID;
20import org.onosproject.yang.gen.v1.tapicommon.rev20180307.tapicommon.Uuid;
21import org.onosproject.yang.gen.v1.tapiconnectivity.rev20180307.tapiconnectivity.getconnectivityservicedetails.DefaultGetConnectivityServiceDetailsInput;
22
23/**
24 * Utility class to deal with TAPI RPC input with DCS.
25 */
26public final class TapiGetConnectivityDetailsInputHandler
27 extends TapiRpcInputHandler<DefaultGetConnectivityServiceDetailsInput> {
28
29 public Uuid getId() {
30 String idOrName = obj.serviceIdOrName();
31 UUID uuid = UUID.fromString(idOrName);
32 return Uuid.fromString(uuid.toString());
33 }
34}