/* * Copyright © 2020 Orange, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.transportpce.nbinotifications.utils; import org.opendaylight.yang.gen.v1.http.org.openroadm.common.node.types.rev181130.NodeIdType; import org.opendaylight.yang.gen.v1.http.org.openroadm.common.service.types.rev190531.ConnectionType; import org.opendaylight.yang.gen.v1.http.org.openroadm.common.service.types.rev190531.service.endpoint.RxDirection; import org.opendaylight.yang.gen.v1.http.org.openroadm.common.service.types.rev190531.service.endpoint.TxDirection; import org.opendaylight.yang.gen.v1.http.org.openroadm.common.service.types.rev190531.service.lgx.LgxBuilder; import org.opendaylight.yang.gen.v1.http.org.openroadm.common.service.types.rev190531.service.port.PortBuilder; import org.opendaylight.yang.gen.v1.http.org.openroadm.common.state.types.rev181130.State; import org.opendaylight.yang.gen.v1.http.org.openroadm.service.format.rev190531.ServiceFormat; import org.opendaylight.yang.gen.v1.nbi.notifications.rev201130.NotificationService; import org.opendaylight.yang.gen.v1.nbi.notifications.rev201130.NotificationServiceBuilder; import org.opendaylight.yang.gen.v1.nbi.notifications.rev201130.notification.service.ServiceAEndBuilder; import org.opendaylight.yang.gen.v1.nbi.notifications.rev201130.notification.service.ServiceZEndBuilder; import org.opendaylight.yangtools.yang.common.Uint32; public final class NotificationServiceDataUtils { private NotificationServiceDataUtils() { } public static NotificationService buildSendEventInput() { NotificationServiceBuilder notificationServiceBuilder = new NotificationServiceBuilder() .setMessage("message") .setServiceName("service1") .setOperationalState(State.InService) .setResponseFailed("") .setCommonId("commond-id") .setConnectionType(ConnectionType.Service) .setServiceZEnd(getServiceZEndBuild().build()) .setServiceAEnd(getServiceAEndBuild().build()); return notificationServiceBuilder.build(); } public static org.opendaylight.yang.gen.v1 .nbi.notifications.rev201130.get.notifications.service.output.NotificationService buildReceivedEvent() { org.opendaylight.yang.gen.v1 .nbi.notifications.rev201130.get.notifications.service.output.NotificationServiceBuilder notificationServiceBuilder = new org.opendaylight.yang.gen.v1 .nbi.notifications.rev201130.get.notifications.service.output.NotificationServiceBuilder() .setMessage("message") .setServiceName("service1") .setOperationalState(State.InService) .setResponseFailed("") .setCommonId("commond-id") .setConnectionType(ConnectionType.Service) .setServiceZEnd(getServiceZEndBuild().build()) .setServiceAEnd(getServiceAEndBuild().build()); return notificationServiceBuilder.build(); } public static ServiceAEndBuilder getServiceAEndBuild() { return new ServiceAEndBuilder() .setClli("clli").setServiceFormat(ServiceFormat.OC).setServiceRate(Uint32.valueOf(1)) .setNodeId(new NodeIdType("XPONDER-1-2")) .setTxDirection(getTxDirection()) .setRxDirection(getRxDirection()); } public static ServiceZEndBuilder getServiceZEndBuild() { return new ServiceZEndBuilder() .setClli("clli").setServiceFormat(ServiceFormat.OC).setServiceRate(Uint32.valueOf(1)) .setNodeId(new NodeIdType("XPONDER-1-2")) .setTxDirection(getTxDirection()) .setRxDirection(getRxDirection()); } private static TxDirection getTxDirection() { return new org.opendaylight.yang.gen.v1.http.org.openroadm.common.service.types.rev190531.service .endpoint.TxDirectionBuilder().setPort(new PortBuilder().setPortDeviceName("device name") .setPortName("port name").setPortRack("port rack").setPortShelf("port shelf") .setPortSlot("port slot").setPortSubSlot("port subslot").setPortType("port type").build()) .setLgx(new LgxBuilder().setLgxDeviceName("lgx device name").setLgxPortName("lgx port name") .setLgxPortRack("lgx port rack").setLgxPortShelf("lgx port shelf").build()) .build(); } private static RxDirection getRxDirection() { return new org.opendaylight.yang.gen.v1.http.org.openroadm.common.service.types.rev190531.service .endpoint.RxDirectionBuilder() .setPort(new PortBuilder().setPortDeviceName("device name").setPortName("port name") .setPortRack("port rack").setPortShelf("port shelf").setPortSlot("port slot") .setPortSubSlot("port subslot").setPortType("port type").build()) .setLgx(new LgxBuilder().setLgxDeviceName("lgx device name") .setLgxPortName("lgx port name").setLgxPortRack("lgx port rack") .setLgxPortShelf("lgx port shelf").build()) .build(); } }