blob: ef80b8293bd8fc1da74ab20360198cf387601921 [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
hirokid8fd7862018-10-09 15:24:24 +090019import org.onosproject.yang.gen.v1.tapicommon.rev20181016.tapicommon.Uuid;
20import org.onosproject.yang.gen.v1.tapiconnectivity.rev20181016.tapiconnectivity.connectivityservice.DefaultEndPoint;
21import org.onosproject.yang.gen.v1.tapiconnectivity.rev20181016.tapiconnectivity.connectivityserviceendpoint.DefaultServiceInterfacePoint;
hirokif4ed5212018-05-26 22:39:38 -070022import org.onosproject.yang.model.ModelObjectId;
23
24import static org.onosproject.odtn.utils.tapi.TapiLocalClassUtil.getLocalId;
25import static org.onosproject.odtn.utils.tapi.TapiLocalClassUtil.setLocalId;
26
27/**
28 * Utility class to deal with TAPI SEP with DCS.
29 */
30public final class TapiSepHandler extends TapiObjectHandler<DefaultEndPoint> {
31
32 private TapiSepHandler() {
33 obj = new DefaultEndPoint();
34 setId();
35 }
36
37 public static TapiSepHandler create() {
38 return new TapiSepHandler();
39 }
40
41 @Override
42 protected Uuid getIdDetail() {
43 return Uuid.fromString(getLocalId(obj));
44 }
45
46 @Override
47 protected void setIdDetail(Uuid uuid) {
48 setLocalId(obj, uuid.toString());
49 }
50
51 @Override
52 public ModelObjectId getParentModelObjectId() {
53 return null;
54 }
55
56 public TapiSepHandler setSip(String sipId) {
57 DefaultServiceInterfacePoint sip = new DefaultServiceInterfacePoint();
hirokid8fd7862018-10-09 15:24:24 +090058 sip.serviceInterfacePointUuid(sipId);
hirokif4ed5212018-05-26 22:39:38 -070059 obj.serviceInterfacePoint(sip);
60 return this;
61 }
62}